add docker file

This commit is contained in:
John Gatward
2026-03-20 10:36:22 +00:00
parent 80a66bc44c
commit bdcbe6efbd
7 changed files with 598 additions and 1 deletions

35
.dockerignore Normal file
View File

@@ -0,0 +1,35 @@
# Python
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
# Virtual environments
.venv/
venv/
# Development tools
.idea/
.vscode/
*.egg-info/
# uv cache
.uv/
# Local output
dist/
# Don't bake data into the image — mount it at runtime
# data.csv is excluded here so it must be provided via docker-compose volume
data.csv
# Git
.git/
.gitignore
# Docker itself
Dockerfile
docker-compose.yml
.dockerignore