Files
pub-quiz/.dockerignore
John Gatward 0e946bcb18 add .gitignore
2026-03-20 11:16:44 +00:00

34 lines
401 B
Plaintext

# 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