refactor(docker): clean up .dockerignore by organizing entries and removing unnecessary lines
Browse files- .dockerignore +11 -15
.dockerignore
CHANGED
|
@@ -1,33 +1,29 @@
|
|
| 1 |
# Git
|
| 2 |
-
.git
|
| 3 |
.gitignore
|
| 4 |
-
.python-version
|
| 5 |
|
| 6 |
# Docker
|
| 7 |
Dockerfile
|
| 8 |
-
.dockerignore
|
| 9 |
|
| 10 |
-
#
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
|
| 15 |
# Python cache
|
| 16 |
-
__pycache__
|
| 17 |
*.pyc
|
| 18 |
*.pyo
|
| 19 |
*.pyd
|
| 20 |
|
| 21 |
-
|
| 22 |
-
# IDE and OS-specific
|
| 23 |
.vscode/
|
| 24 |
.idea/
|
| 25 |
.DS_Store
|
| 26 |
|
| 27 |
-
# Local
|
| 28 |
.env
|
| 29 |
-
*.env.*
|
| 30 |
|
| 31 |
-
#
|
| 32 |
-
|
| 33 |
-
|
|
|
|
| 1 |
# Git
|
| 2 |
+
.git/
|
| 3 |
.gitignore
|
|
|
|
| 4 |
|
| 5 |
# Docker
|
| 6 |
Dockerfile
|
|
|
|
| 7 |
|
| 8 |
+
# Python virtual environments
|
| 9 |
+
venv/
|
| 10 |
+
env/
|
| 11 |
+
.venv/
|
| 12 |
|
| 13 |
# Python cache
|
| 14 |
+
__pycache__/
|
| 15 |
*.pyc
|
| 16 |
*.pyo
|
| 17 |
*.pyd
|
| 18 |
|
| 19 |
+
# IDE and OS files
|
|
|
|
| 20 |
.vscode/
|
| 21 |
.idea/
|
| 22 |
.DS_Store
|
| 23 |
|
| 24 |
+
# Local environment variables
|
| 25 |
.env
|
|
|
|
| 26 |
|
| 27 |
+
# Testing
|
| 28 |
+
.pytest_cache/
|
| 29 |
+
htmlcov/
|