website/nginx/Dockerfile
2025-02-16 16:38:07 +01:00

10 lines
156 B
Docker

FROM nginx
WORKDIR /server
COPY ./nginx.conf /etc/nginx/nginx.conf
COPY ./html /server/html
COPY ./index.html /server
CMD ["nginx", "-g", "daemon off;"]