修改数据日志全局组件,并添加自动代码生成模板

This commit is contained in:
2025-10-24 08:30:42 +08:00
parent 3df6e12184
commit 53854c519f
9 changed files with 51 additions and 55 deletions

View File

@ -4,8 +4,10 @@ FROM docker.tanuki.vip/nginx-amd64:1.29.0
MAINTAINER fucai
WORKDIR /usr/share/nginx/html
COPY ./nginx.conf /etc/nginx/nginx.conf # 拷贝 nginx 配置文件
COPY ./dist/ /usr/share/nginx/html/ # 拷贝 dist 目录下的文件到 nginx 的 html 目录下
# 拷贝 nginx 配置文件
COPY ./nginx.conf /etc/nginx/nginx.conf
# 拷贝 dist 目录下的文件到 nginx 的 html 目录下
COPY ./dist/ /usr/share/nginx/html/
EXPOSE 8080