FROM nginx:1.31.2-alpine

RUN apk update && \
    apk upgrade --no-cache

COPY index.html /usr/share/nginx/html/index.html
EXPOSE 80
