2
0

Dockerfile 151 B

1234567
  1. FROM nginx:1.16
  2. ENV TZ="Asia/Shanghai"
  3. ENV NGINX_PORT=80
  4. EXPOSE ${NGINX_PORT}
  5. COPY dist/ /usr/share/nginx/html/
  6. COPY nginx.conf /etc/nginx/nginx.conf