Spaces:
Paused
Paused
Create .dockerignore
Browse files- .dockerignore +19 -0
.dockerignore
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Ignore Python virtual environments
|
| 2 |
+
venv/
|
| 3 |
+
.venv/
|
| 4 |
+
|
| 5 |
+
# Ignore Python cache files
|
| 6 |
+
__pycache__/
|
| 7 |
+
*.pyc
|
| 8 |
+
*.pyo
|
| 9 |
+
*.pyd
|
| 10 |
+
|
| 11 |
+
# Ignore build artifacts and local cache
|
| 12 |
+
.git/
|
| 13 |
+
.idea/
|
| 14 |
+
.vscode/
|
| 15 |
+
build/
|
| 16 |
+
dist/
|
| 17 |
+
|
| 18 |
+
# --- IMPORTANT: Ignore the Hugging Face cache directory ---
|
| 19 |
+
huggingface_cache/
|