ComfyUI/.dockerignore
Bahadir Ciloglu cd8bb55239 Fix Docker build to exclude models from image
- Update .dockerignore to exclude entire models/ directory
- Exclude input/ directory as well
- Models will now be loaded from RunPod network storage only
- Significantly reduce Docker image size and build time
2025-11-01 16:49:55 +03:00

80 lines
685 B
Plaintext

# Git
.git
.gitignore
.gitattributes
# Documentation
*.md
docs/
# Development files
.env
.env.local
.env.example
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# Virtual environments
venv/
env/
ENV/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Logs
*.log
logs/
# Temporary files
temp/
tmp/
*.tmp
# Large model files (will be mounted from network storage)
models/
!models/.gitkeep
# Output files
output/
outputs/
input/
# Cache
.cache/
cache/
# Node modules (if any)
node_modules/
# Docker
Dockerfile.*
docker-compose*.yml