first commit

This commit is contained in:
陈现府
2025-11-20 10:45:16 +08:00
commit 8355431361
2643 changed files with 291314 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# 基础镜像
FROM nginx
# author
MAINTAINER mhd
# 挂载目录
VOLUME /home/mhd/projects/mhd-ui
# 创建目录
RUN mkdir -p /home/mhd/projects/mhd-ui
# 指定路径
WORKDIR /home/mhd/projects/mhd-ui
# 复制conf文件到路径
COPY ./conf/nginx.conf /etc/nginx/nginx.conf
# 复制html文件到路径
COPY ./html/dist /home/mhd/projects/mhd-ui