# Docker 构建上下文忽略列表
# 构建上下文 = 项目根目录，文件越少构建越快
.git
.gitignore

# Python（本脚手架用不到，保留以防混用）
**/__pycache__
**/*.pyc
**/.venv
**/venv

# Node
**/node_modules
**/dist

# 系统 & 编辑器
**/.DS_Store
**/.idea
**/.vscode

# 运行配置文件不需要进镜像（配置在运行时由 docker compose 注入）
docker/
