12 lines
211 B
Docker
Raw Normal View History

2024-09-23 16:01:31 +08:00
FROM nginx:latest
ENV SERVER_ROOT=/usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
ADD html.tar.gz /usr/share/nginx/html
WORKDIR /usr/share/nginx/html
CMD ["nginx", "-g", "daemon off;"]