VideoBackgroundReplacer / .dockerignor
MogensR's picture
Update .dockerignor
8b72ab2
raw
history blame
1.35 kB
# Git and version control (not needed in container)
.git
.gitignore
.gitattributes
# Documentation (reduces image size)
*.md
README*
CHANGELOG*
docs/
documentation/
# Development tools (not needed in production)
.vscode/
.idea/
*.swp
*.swo
*~
# Testing files (not needed in production)
tests/
test_*
*_test.py
pytest.ini
.pytest_cache/
.coverage
htmlcov/
# Development dependencies
requirements-dev.txt
dev-requirements.txt
# OS files
.DS_Store
Thumbs.db
desktop.ini
# Python cache (will be regenerated)
__pycache__/
*.pyc
*.pyo
*.pyd
# Virtual environments (should use container environment)
venv/
env/
.venv/
.env/
ENV/
# Logs (container should use stdout/stderr)
*.log
logs/
# Temporary files
*.tmp
*.temp
temp/
tmp/
# Build artifacts (will be rebuilt in container)
build/
dist/
*.egg-info/
# Local configuration (use environment variables instead)
config_local.py
.env.local
.secrets
# Example and test data (too large for container)
example_videos/
test_videos/
sample_data/
# Model files (should be downloaded at runtime)
models/
*.pt
*.pth
*.ckpt
*.safetensors
# Cache directories (will be created fresh)
.cache/
cache/
model_cache/
# Large media files
*.mp4
*.avi
*.mov
*.mkv
*.webm
*.flv
*.jpg
*.jpeg
*.png
*.gif
*.bmp
*.tiff
# Development scripts
scripts/dev/
dev_tools/
debug/
# Gradio cache
gradio_cached_examples/
flagged/