fix: remove default nginx configuration before copying custom config
All checks were successful
Build and Deploy Thoughts / build-and-deploy-local (push) Successful in 7s

This commit is contained in:
2025-09-09 03:47:24 +02:00
parent 64806f8bd4
commit 0ba3b79185

View File

@@ -1,3 +1,5 @@
FROM nginx:stable-alpine FROM nginx:stable-alpine
RUN rm /etc/nginx/conf.d/default.conf
COPY nginx.conf /etc/nginx/conf.d/default.conf COPY nginx.conf /etc/nginx/conf.d/default.conf