2
0

Dockerfile 155 B

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