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

nginx-dockerfile 409 B

12345678910111213141516
  1. # 基础镜像
  2. #FROM nginx:latest
  3. FROM 172.20.32.187/ci4s/nginx:latest
  4. # author
  5. MAINTAINER ruoyi
  6. # 挂载目录
  7. VOLUME /home/ruoyi/projects/ruoyi-ui
  8. # 创建目录
  9. RUN mkdir -p /home/ruoyi/projects/ruoyi-ui
  10. # 指定路径
  11. WORKDIR /home/ruoyi/projects/ruoyi-ui
  12. # 复制conf文件到路径
  13. COPY ./conf/nginx.conf /etc/nginx/nginx.conf
  14. # 复制html文件到路径
  15. COPY ./html/dist /home/ruoyi/projects/ruoyi-ui