Create .dockerignore
Browse files- .dockerignore +107 -0
.dockerignore
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ===============================
|
| 2 |
+
# Python cache and temporary files
|
| 3 |
+
# ===============================
|
| 4 |
+
__pycache__/
|
| 5 |
+
*.pyc
|
| 6 |
+
*.pyo
|
| 7 |
+
*.pyd
|
| 8 |
+
*.swp
|
| 9 |
+
*.swo
|
| 10 |
+
*.log
|
| 11 |
+
*.tmp
|
| 12 |
+
.DS_Store
|
| 13 |
+
|
| 14 |
+
# ===============================
|
| 15 |
+
# Virtual environments
|
| 16 |
+
# ===============================
|
| 17 |
+
venv/
|
| 18 |
+
env/
|
| 19 |
+
.venv/
|
| 20 |
+
.python-version
|
| 21 |
+
|
| 22 |
+
# ===============================
|
| 23 |
+
# Cache and model directories
|
| 24 |
+
# (Prevent accidental upload of local cache)
|
| 25 |
+
# ===============================
|
| 26 |
+
.cache/
|
| 27 |
+
huggingface/
|
| 28 |
+
transformers/
|
| 29 |
+
datasets/
|
| 30 |
+
hf_cache/
|
| 31 |
+
torch_cache/
|
| 32 |
+
tokenizers_cache/
|
| 33 |
+
pip_cache/
|
| 34 |
+
|
| 35 |
+
# ===============================
|
| 36 |
+
# Git and version control
|
| 37 |
+
# ===============================
|
| 38 |
+
.git/
|
| 39 |
+
.gitignore
|
| 40 |
+
.gitattributes
|
| 41 |
+
.gitmodules
|
| 42 |
+
|
| 43 |
+
# ===============================
|
| 44 |
+
# OS-specific files
|
| 45 |
+
# ===============================
|
| 46 |
+
Thumbs.db
|
| 47 |
+
ehthumbs.db
|
| 48 |
+
Icon?
|
| 49 |
+
Desktop.ini
|
| 50 |
+
|
| 51 |
+
# ===============================
|
| 52 |
+
# IDE and editor settings
|
| 53 |
+
# ===============================
|
| 54 |
+
.vscode/
|
| 55 |
+
.idea/
|
| 56 |
+
*.code-workspace
|
| 57 |
+
|
| 58 |
+
# ===============================
|
| 59 |
+
# Build and distribution artifacts
|
| 60 |
+
# ===============================
|
| 61 |
+
build/
|
| 62 |
+
dist/
|
| 63 |
+
*.egg-info/
|
| 64 |
+
*.egg
|
| 65 |
+
*.tar.gz
|
| 66 |
+
*.whl
|
| 67 |
+
|
| 68 |
+
# ===============================
|
| 69 |
+
# Jupyter notebooks and checkpoints
|
| 70 |
+
# ===============================
|
| 71 |
+
*.ipynb
|
| 72 |
+
*.ipynb_checkpoints/
|
| 73 |
+
|
| 74 |
+
# ===============================
|
| 75 |
+
# Test files, local experiments, docs
|
| 76 |
+
# ===============================
|
| 77 |
+
tests/
|
| 78 |
+
notebooks/
|
| 79 |
+
examples/
|
| 80 |
+
docs/
|
| 81 |
+
*.md~
|
| 82 |
+
|
| 83 |
+
# ===============================
|
| 84 |
+
# Local environment or secret files
|
| 85 |
+
# ===============================
|
| 86 |
+
.env
|
| 87 |
+
.env.*
|
| 88 |
+
secrets/
|
| 89 |
+
*.pem
|
| 90 |
+
*.key
|
| 91 |
+
*.crt
|
| 92 |
+
|
| 93 |
+
# ===============================
|
| 94 |
+
# Hugging Face Spaces / Docker-specific
|
| 95 |
+
# ===============================
|
| 96 |
+
Dockerfile~
|
| 97 |
+
.dockerignore~
|
| 98 |
+
.hfignore
|
| 99 |
+
.git-lfs/
|
| 100 |
+
.gitlfs/
|
| 101 |
+
|
| 102 |
+
# ===============================
|
| 103 |
+
# Include model directory explicitly
|
| 104 |
+
# (The '!' means "do NOT ignore this folder")
|
| 105 |
+
# This ensures your baked-in model cache stays in the image.
|
| 106 |
+
# ===============================
|
| 107 |
+
!model/
|