From 46a14f0e463ca0faef92c3eb3384396d25bdf7a3 Mon Sep 17 00:00:00 2001 From: Dome Date: Fri, 28 Mar 2025 14:29:04 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index faabb93..62c94c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,10 +7,8 @@ COPY . . # Stage 2: Production FROM nginx:latest -WORKDIR /etc/nginx COPY ./nginx.conf /etc/nginx/nginx.conf -WORKDIR /usr/share/nginx/html -COPY --from=build /app/build . +COPY --from=build /app/build /usr/share/nginx/html # Expose port 80 EXPOSE 80