Merge pull request #17 from redrockjs/dev

fix: update dockerfile
This commit was merged in pull request #17.
This commit is contained in:
Valeriy G
2024-05-17 10:21:01 +03:00
committed by GitHub

View File

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