From fecb739aea3b0bc68774ab40ca8d660cd0cc8c00 Mon Sep 17 00:00:00 2001 From: bayanolla Date: Wed, 29 Oct 2025 17:25:33 +0300 Subject: [PATCH] push --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 80ca380..7a36201 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,6 @@ COPY . . RUN npm run build FROM nginx:alpine -COPY --from=build /app/dist /usr/share/nginx/html -COPY nginx-template.conf /etc/nginx/templates/default.conf.template +COPY --from=build /app/build /usr/share/nginx/html EXPOSE 80 -CMD ["/docker-entrypoint.sh", "nginx", "-g", "daemon off;"] \ No newline at end of file +CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file