From 35517836a971850bf73b52d04b3f31a5539517f4 Mon Sep 17 00:00:00 2001 From: gsd Date: Sat, 29 Mar 2025 16:29:55 +0300 Subject: [PATCH] docker fix --- Dockerfile | 8 +++++--- srv.conf | 12 ++++++++++++ 2 files changed, 17 insertions(+), 3 deletions(-) create mode 100644 srv.conf diff --git a/Dockerfile b/Dockerfile index 784a3ec..684e99a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,8 @@ COPY . . RUN npm install --reg https://nexus.pblr-nyk.pro/repository/npm/ && \ npm run ng build -FROM nginx:alpine -RUN rm -r /var/www/html -COPY --from=builder /build/dist/f13_ang_web /var/www/html +FROM nginx:stable-alpine +COPY --from=builder /build/dist/f13_ang_web /usr/share/nginx/html +RUN rm /etc/nginx/conf.d/default.conf +COPY srv.conf /etc/nginx/conf.d +CMD ["nginx", "-g", "daemon off;"] diff --git a/srv.conf b/srv.conf new file mode 100644 index 0000000..64b066b --- /dev/null +++ b/srv.conf @@ -0,0 +1,12 @@ +server { + listen 80; + listen [::]:80; + server_name localhost; + + root /usr/share/nginx/html; + index index.html index.htm; + + location / { + try_files $uri /index.html; + } +}