From b38ffa422c09dc0948e2277e19023ddaac9c49f3 Mon Sep 17 00:00:00 2001 From: Irwan Cahyono Date: Thu, 7 Aug 2025 13:12:58 +0700 Subject: [PATCH] dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 92ecba7..b4d845f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,8 @@ FROM nginx:1.29.0-alpine-slim RUN rm /etc/nginx/conf.d/default.conf -COPY --from=builder /app/.output/public /usr/share/nginx/html +COPY --from=builder /app/dist /usr/share/nginx/html COPY nginx.conf /etc/nginx/conf.d/default.conf EXPOSE 80 +CMD ["nginx", "-g", "daemon off;"]