From df025f4d46a989789ec3020b1de6e6330911089b Mon Sep 17 00:00:00 2001 From: Olly Hearn Date: Fri, 12 Apr 2024 23:25:55 +0300 Subject: [PATCH] 1 --- nginx/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/Dockerfile b/nginx/Dockerfile index 0e0e22b..d892980 100644 --- a/nginx/Dockerfile +++ b/nginx/Dockerfile @@ -8,6 +8,6 @@ RUN npm run build FROM nginx:1.25.4-alpine COPY --from=build /app/dist /usr/share/nginx/html RUN rm /etc/nginx/conf.d/default.conf -COPY ./nginx.conf /etc/nginx/conf.d +COPY ./nginx/nginx.conf /etc/nginx/conf.d EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]