fix: update dockerfile

This commit is contained in:
2024-05-17 10:18:54 +03:00
parent 3f506245e7
commit a5b5758999

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"]