Added dockerignore and updated gitignore files, update docker image version

This commit is contained in:
2026-02-09 17:03:18 +01:00
parent 220c741654
commit 3d87125062
3 changed files with 90 additions and 10 deletions

51
.dockerignore Normal file
View File

@@ -0,0 +1,51 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.pyo
*.pyd
*.pyl
.pytest_cache/
.mypy_cache/
.ruff_cache/
.tox/
.nox/
.coverage
coverage.xml
htmlcov/
.cache/
# Virtual environments
.venv/
venv/
env/
ENV/
# Build/artifacts
dist/
build/
*.egg-info/
.eggs/
# Logs
*.log
# IDEs and editors
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
*.code-workspace
.devcontainer/
# OS files
.DS_Store
Thumbs.db
# Git
.git/
.gitignore
# Docker
Dockerfile
.dockerignore