From e43f06cf2658f1cf85f7e2e005fca7a1931879d4 Mon Sep 17 00:00:00 2001 From: wayanrivan Date: Fri, 16 May 2025 09:37:52 +0700 Subject: [PATCH] add environment for production --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 471bcaf..ab64eef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,6 +35,6 @@ COPY --from=base /public /public # Expose required port # CMD ["npm", "run", "start"] FROM nginx:alpine -COPY --from=builder /app/dist /usr/share/nginx/html +COPY --from=base /app/dist /usr/share/nginx/html EXPOSE 80 CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file