use a custom nginx config
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 34s

This commit is contained in:
Lee
2024-04-26 00:04:19 +01:00
parent a558b4f746
commit 68e6b71020
3 changed files with 38 additions and 0 deletions

View File

@ -35,6 +35,7 @@ RUN \
FROM nginx:alpine AS runner
COPY --from=builder /app/dist/ /usr/share/nginx/html
COPY --from=builder /app/nginx.conf /etc/nginx/nginx.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]