diff --git a/Dockerfile b/Dockerfile index e185d3f..f1265fe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]