fix: update dockerfile #17

Merged
redrockjs merged 1 commits from dev into main 2024-05-17 07:21:01 +00:00

View File

@@ -9,4 +9,5 @@ RUN npm run build
# Run stage # Run stage
FROM node:20-alpine AS runner FROM node:20-alpine AS runner
COPY --from=builder /app/build . COPY --from=builder /app/build .
COPY --from=builder /app/node_modules ./node_modules
CMD ["node", "index.js"] CMD ["node", "index.js"]