Docker-Dockerfile

Docker-Dockerfile

nginx

1
2
3
4
5
From nginx:1.20-alpine
RUN cp -a /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
COPY ./dist /dist
COPY ./nginx.conf /etc/nginx/nginx.conf
CMD ["nginx","-g","daemon off;"]