FROM nginx:1.30-alpine

# remove default config
RUN rm /etc/nginx/conf.d/default.conf

# copy our custom config
COPY nginx.conf /etc/nginx/nginx.conf
