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