fix(docker): 加 .dockerignore 瘦身构建上下文(1.9G→~50MB)+Dockerfile apt清华镜像

NAS容器bind-mount提供代码/data,镜像只需Python+依赖层;
排除data_cache/frontend/venv/logs/.git等;治上下文发送慢+输出不可监控
This commit is contained in:
2026-08-01 19:20:12 +08:00
parent 53daf9b57b
commit 0332aef3d4
+24
View File
@@ -0,0 +1,24 @@
# 镜像构建上下文瘦身:NAS 容器 bind-mount /app 提供代码与数据,
# 镜像只需 Python + 依赖层,下列大目录/文件不进上下文(1.9G → ~50MB)。
data_cache/
data/
frontend/
venv/
venv310/
logs/
*.log
bt_*.log
.git/
.gitignore
__pycache__/
*.pyc
*.pyo
*.pyd
.DS_Store
*.db
*.sqlite
*.parquet
# 构建产物/临时
*.egg-info/
.pytest_cache/
.cache/