nginx.conf

This commit is contained in:
2023-03-10 11:45:33 +01:00
parent 2b6a40f795
commit 2d7b1dee75
3 changed files with 47 additions and 0 deletions

View File

@@ -14,5 +14,6 @@ RUN quasar build
# production stage
FROM nginx:1.17.5-alpine as production-stage
COPY --from=build-stage /app/dist/spa /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]