Files
thoughts/nginx/Dockerfile
Gabriel Kaszewski 0ba3b79185
All checks were successful
Build and Deploy Thoughts / build-and-deploy-local (push) Successful in 7s
fix: remove default nginx configuration before copying custom config
2025-09-09 03:47:24 +02:00

5 lines
111 B
Docker

FROM nginx:stable-alpine
RUN rm /etc/nginx/conf.d/default.conf
COPY nginx.conf /etc/nginx/conf.d/default.conf