物管理前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
333 B

  1. FROM nginx:stable-alpine
  2. WORKDIR /usr/share/nginx/html
  3. ENV TZ=Asia/Shanghai
  4. RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
  5. COPY ./docker-entrypoint.sh /docker-entrypoint.d/my.sh
  6. RUN chmod +x /docker-entrypoint.d/my.sh
  7. COPY ./dist /usr/share/nginx/html
  8. EXPOSE 80
  9. CMD ["nginx", "-g", "daemon off;"]