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