Spaces:
Sleeping
Sleeping
Upload .dockerignore with huggingface_hub
Browse files- .dockerignore +5 -38
.dockerignore
CHANGED
|
@@ -1,7 +1,4 @@
|
|
| 1 |
-
#
|
| 2 |
-
# ==============================================
|
| 3 |
-
|
| 4 |
-
# Python cache
|
| 5 |
__pycache__/
|
| 6 |
*.py[cod]
|
| 7 |
*$py.class
|
|
@@ -24,57 +21,27 @@ wheels/
|
|
| 24 |
*.egg
|
| 25 |
|
| 26 |
# Virtual environments
|
| 27 |
-
.env
|
| 28 |
-
.venv
|
| 29 |
-
env/
|
| 30 |
venv/
|
|
|
|
| 31 |
ENV/
|
| 32 |
-
env.bak/
|
| 33 |
-
venv.bak/
|
| 34 |
|
| 35 |
# IDE files
|
| 36 |
.vscode/
|
| 37 |
.idea/
|
| 38 |
*.swp
|
| 39 |
*.swo
|
| 40 |
-
*~
|
| 41 |
|
| 42 |
# OS files
|
| 43 |
.DS_Store
|
| 44 |
-
.DS_Store?
|
| 45 |
-
._*
|
| 46 |
-
.Spotlight-V100
|
| 47 |
-
.Trashes
|
| 48 |
-
ehthumbs.db
|
| 49 |
Thumbs.db
|
| 50 |
|
| 51 |
-
# Logs
|
| 52 |
-
*.log
|
| 53 |
-
logs/
|
| 54 |
-
|
| 55 |
# Git
|
| 56 |
.git/
|
| 57 |
.gitignore
|
| 58 |
|
| 59 |
-
#
|
| 60 |
-
*.
|
| 61 |
-
docs/
|
| 62 |
-
|
| 63 |
-
# Test files
|
| 64 |
-
tests/
|
| 65 |
-
test_*.py
|
| 66 |
-
*_test.py
|
| 67 |
-
|
| 68 |
-
# Jupyter notebooks
|
| 69 |
-
*.ipynb
|
| 70 |
-
.ipynb_checkpoints/
|
| 71 |
-
|
| 72 |
-
# Data files (exclude training data from container)
|
| 73 |
-
*.csv
|
| 74 |
-
*.json
|
| 75 |
-
data/
|
| 76 |
|
| 77 |
# Temporary files
|
| 78 |
-
tmp/
|
| 79 |
-
temp/
|
| 80 |
*.tmp
|
|
|
|
|
|
| 1 |
+
# Python cache files
|
|
|
|
|
|
|
|
|
|
| 2 |
__pycache__/
|
| 3 |
*.py[cod]
|
| 4 |
*$py.class
|
|
|
|
| 21 |
*.egg
|
| 22 |
|
| 23 |
# Virtual environments
|
|
|
|
|
|
|
|
|
|
| 24 |
venv/
|
| 25 |
+
env/
|
| 26 |
ENV/
|
|
|
|
|
|
|
| 27 |
|
| 28 |
# IDE files
|
| 29 |
.vscode/
|
| 30 |
.idea/
|
| 31 |
*.swp
|
| 32 |
*.swo
|
|
|
|
| 33 |
|
| 34 |
# OS files
|
| 35 |
.DS_Store
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
Thumbs.db
|
| 37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
# Git
|
| 39 |
.git/
|
| 40 |
.gitignore
|
| 41 |
|
| 42 |
+
# Logs
|
| 43 |
+
*.log
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
|
| 45 |
# Temporary files
|
|
|
|
|
|
|
| 46 |
*.tmp
|
| 47 |
+
*.temp
|