This commit is contained in:
2024-04-12 23:25:55 +03:00
parent 04934c1916
commit df025f4d46

View File

@ -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;"]