Files
2026-06-06 14:19:16 +02:00

8 lines
141 B
Docker

FROM nginx:1.31.1-alpine
RUN apk update && \
apk upgrade --no-cache libxml2
COPY index.html /usr/share/nginx/html/index.html
EXPOSE 80