.dockerignore: __pycache__ und .pyc ausschließen

This commit is contained in:
Hitonabi
2026-07-21 17:24:29 +02:00
parent 343eccb543
commit b8cd4d9e0b
+45
View File
@@ -0,0 +1,45 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
.eggs/
*.egg
# Virtual Environment
venv/
env/
venv.bak/
.env
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Docker
.dockerignore
.docker/
# Test
tests/
test_*.py
*_test.py
.pytest_cache/
# Build
dist/
build/
*.egg-info/
# Cache
.cache/
__pycache__/