Spaces:
Paused
Paused
File size: 508 Bytes
14c8ffd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
# The .dockerignore file excludes files from the container build process.
#
# https://docs.docker.com/engine/reference/builder/#dockerignore-file
# Replicate
/safety-cache/
/gradio_cached_examples/
*.mp4
*.pth
*.pt
*.bin
*.ckpt
*.onnx
*.tar
*.tar.gz
*.h5
*.pb
*.caffemodel
*.weights
*.tar
*.jpg
*.jpeg
*.png
*.webp
.vscode
# Exclude Git files
.git
.github
.gitignore
# Exclude Python cache files
__pycache__
.pytest_cache/
.mypy_cache
.pytest_cache
.ruff_cache
# Exclude Python virtual environment
/venv
|