feat: add Dockerfile and .dockerignore for containerized deployment

This commit is contained in:
2026-05-09 01:18:53 +02:00
parent bb7be30c2b
commit b43e83758c
2 changed files with 58 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
# Git and environments
.git
.gitignore
.venv
venv
env
# Python caches
__pycache__
*.pyc
*.pyo
*.pyd
.Python
# Local environments and secrets
.env
.env.*
# Linting and testing
.ruff_cache
.pytest_cache
tests/
# Build artifacts
dist/
build/
*.egg-info/
scratch/