# Base image: nginx:alpine. Pulled from docker.io until we mirror it into
# the internal registry (similar to how haproxy-manager-base mirrors
# python:3.12-slim under cloud-hosting-platform/python:3.12-slim).
FROM docker.io/library/nginx:alpine
COPY index.html /usr/share/nginx/html/index.html
COPY nginx.conf /etc/nginx/nginx.conf
RUN chmod 0644 /usr/share/nginx/html/index.html /etc/nginx/nginx.conf
EXPOSE 80
