feat: 打包调整

This commit is contained in:
caiyuchao
2025-09-26 10:58:13 +08:00
parent 7a43f1c1d1
commit 3e07e47e13
19 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
# 基础镜像
FROM nginx:1.29.0
# author
MAINTAINER agt
# 挂载目录
VOLUME /home/agt/html
# 创建目录
RUN mkdir -p /home/agt/html
# 指定路径
WORKDIR /home/agt/html
# 复制conf文件到路径
COPY ./conf/nginx.conf /etc/nginx/nginx.conf
# 复制html文件到路径
COPY ./html/dist /home/agt/html