FROM nginx:1.25-alpine # Install curl for health checks RUN apk add --no-cache curl # Remove default config RUN rm /etc/nginx/conf.d/default.conf # Copy custom nginx config COPY nginx.conf /etc/nginx/nginx.conf EXPOSE 8080 8444 CMD ["nginx", "-g", "daemon off;"]