feat: add Dockerfile and .dockerignore for containerized deployment
This commit is contained in:
@@ -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/
|
||||
Reference in New Issue
Block a user