Skip to content

Commit 603925b

Browse files
committed
revert change
1 parent cb39dec commit 603925b

File tree

3 files changed

+301
-49
lines changed

3 files changed

+301
-49
lines changed

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ COPY package.json pnpm-lock.yaml pnpm-workspace.yaml .npmrc turbo.json ./
2121
COPY agent ./agent
2222
COPY packages ./packages
2323
COPY scripts ./scripts
24+
COPY characters ./characters
2425

2526
# Install dependencies and build the project
2627
RUN pnpm install \
@@ -38,7 +39,6 @@ RUN npm install -g pnpm@9.4.0 && \
3839
rm -rf /var/lib/apt/lists/*
3940

4041
WORKDIR /app
41-
RUN mkdir -p /app/characters
4242

4343
# Copy built artifacts and production dependencies from the builder stage
4444
COPY --from=builder /app/package.json ./
@@ -49,6 +49,7 @@ COPY --from=builder /app/node_modules ./node_modules
4949
COPY --from=builder /app/agent ./agent
5050
COPY --from=builder /app/packages ./packages
5151
COPY --from=builder /app/scripts ./scripts
52+
COPY --from=builder /app/characters ./characters
5253

5354
# Set the command to run the application
5455
CMD ["pnpm", "start"]

0 commit comments

Comments
 (0)