Create .dockerignor
Browse files- .dockerignor +42 -0
.dockerignor
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python cache and temporary files
|
| 2 |
+
__pycache__
|
| 3 |
+
*.pyc
|
| 4 |
+
*.pyo
|
| 5 |
+
*.pyd
|
| 6 |
+
.Python
|
| 7 |
+
|
| 8 |
+
# Virtual environment
|
| 9 |
+
venv
|
| 10 |
+
env
|
| 11 |
+
|
| 12 |
+
# Git
|
| 13 |
+
.git
|
| 14 |
+
.gitignore
|
| 15 |
+
|
| 16 |
+
# Logs and databases
|
| 17 |
+
*.log
|
| 18 |
+
*.sqlite
|
| 19 |
+
|
| 20 |
+
# OS-specific files
|
| 21 |
+
.DS_Store
|
| 22 |
+
Thumbs.db
|
| 23 |
+
|
| 24 |
+
# IDE-specific files
|
| 25 |
+
.idea
|
| 26 |
+
.vscode
|
| 27 |
+
|
| 28 |
+
# Build artifacts
|
| 29 |
+
dist
|
| 30 |
+
build
|
| 31 |
+
*.egg-info
|
| 32 |
+
|
| 33 |
+
# Temporary files
|
| 34 |
+
*.tmp
|
| 35 |
+
*.swp
|
| 36 |
+
|
| 37 |
+
# Documentation
|
| 38 |
+
*.md
|
| 39 |
+
README.md
|
| 40 |
+
|
| 41 |
+
# Example videos (if you have a separate directory)
|
| 42 |
+
example_video/
|