From a5b57589997db8df6b2b125da17317937b7bc16c Mon Sep 17 00:00:00 2001 From: RedRock Date: Fri, 17 May 2024 10:18:54 +0300 Subject: [PATCH] fix: update dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) 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"]