WechatOnCloud/panel/.dockerignore
Kris e35f1d64cf feat: 初始化项目,添加完整的微信云部署方案与面板实现
包含以下核心内容:
1.  完整的Docker容器化部署方案,支持多架构amd64/arm64
2.  自研Web管理面板,包含登录认证、实例管理、权限控制
3.  微信实例容器镜像,内置中文字体与输入法修复
4.  飞牛OS应用打包适配
5.  完整的文档与运维指南
2026-07-05 03:50:30 +08:00

10 lines
515 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 构建上下文为 ./panel。务必排除宿主的 node_modules否则 `COPY web/ ./` / `COPY server/ ./`
# 会把宿主(如 macOS平台特定的二进制esbuild/@esbuild/*)拷进 Linux 镜像,覆盖镜像内 npm install
# 的干净依赖 → tsx/esbuild 报 "Host version ... does not match binary version" 而起不来。
# CI 是干净 checkout、本无 node_modules 不受影响;此文件保证本地构建也干净、与 CI 一致。)
**/node_modules
web/dist
**/.DS_Store
**/*.log
.git