feat: add Docker configuration for containerized deployment

This commit is contained in:
Andrew 2026-03-15 15:02:08 +07:00
parent f29dcad16e
commit 80fe7a99f0
4 changed files with 173 additions and 0 deletions

54
.dockerignore Normal file
View file

@ -0,0 +1,54 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
.env/
.venv/
env/
venv/
ENV/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# Project specific
output/*.tif
data/*.tif
data/*.shp
data/*.shx
data/*.dbf
data/*.prj
*.dbf
*.shp
*.shx
*.prj
# OS
.DS_Store
Thumbs.db
# Testing
.pytest_cache/
.coverage
htmlcov/