---初始化后台管理web页面项目

This commit is contained in:
2025-08-20 14:39:30 +08:00
parent ad49711a7e
commit 87545a8baf
2057 changed files with 282864 additions and 213 deletions

13
docker/Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM --platform=linux/arm64 docker.xuanyuan.run/library/nginx:1.29.0
COPY ./nginx.conf /etc/nginx/nginx.conf
COPY ./50x.html /usr/share/nginx/html/50x.html
COPY ./dist/ /usr/share/nginx/html/
EXPOSE 8080
CMD ["nginx","-g","daemon off;"]
# docker build -t pcitc/itc-web:1.0.0 .