Skip to content

Commit

Permalink
👷 fix path in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Shion1305 committed Mar 9, 2024
1 parent ff281f3 commit 4a4eaf7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cloudrun/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ FROM node:20-slim as production

WORKDIR /app

COPY --from=builder /build/.next ./.next
COPY --from=builder /build/node_modules ./node_modules
COPY --from=builder /build/package.json ./package.json
COPY --from=builder /app/.next ./.next
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/package.json ./package.json

CMD ["npm", "start"]

Expand Down

0 comments on commit 4a4eaf7

Please sign in to comment.