2025-02-18 20:14:57 +01:00

10 lines
158 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;"]