feat: update documentation content and rebuild static assets for VitePress project

This commit is contained in:
2026-04-01 15:27:24 +08:00
commit f2cd87c42c
518 changed files with 18646 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM docker.1ms.run/library/nginx:latest
# 将 VitePress 构建产物拷贝到 Nginx 目录
COPY .vitepress/dist /usr/share/nginx/html
# 暴露 80 端口
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]