Create .dockerignore
Browse files- .dockerignore +37 -0
.dockerignore
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Ignore Python cache and virtual envs
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.pyc
|
| 4 |
+
*.pyo
|
| 5 |
+
*.pyd
|
| 6 |
+
*.pkl
|
| 7 |
+
*.so
|
| 8 |
+
*.egg-info
|
| 9 |
+
.venv/
|
| 10 |
+
env/
|
| 11 |
+
venv/
|
| 12 |
+
|
| 13 |
+
# Ignore OS / editor files
|
| 14 |
+
.DS_Store
|
| 15 |
+
*.swp
|
| 16 |
+
*.swo
|
| 17 |
+
*.log
|
| 18 |
+
|
| 19 |
+
# Ignore Git & local configs
|
| 20 |
+
.git/
|
| 21 |
+
.gitignore
|
| 22 |
+
.gitattributes
|
| 23 |
+
.env
|
| 24 |
+
*.secret
|
| 25 |
+
*.key
|
| 26 |
+
|
| 27 |
+
# Ignore build artifacts
|
| 28 |
+
dist/
|
| 29 |
+
build/
|
| 30 |
+
*.out
|
| 31 |
+
*.bin
|
| 32 |
+
|
| 33 |
+
# Ignore Hugging Face cache and models outside the baked directory
|
| 34 |
+
~/.cache/
|
| 35 |
+
~/.huggingface/
|
| 36 |
+
hf-cache/
|
| 37 |
+
models/
|