feat: add Docker configuration for containerized deployment
This commit is contained in:
parent
f29dcad16e
commit
80fe7a99f0
4 changed files with 173 additions and 0 deletions
54
.dockerignore
Normal file
54
.dockerignore
Normal 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/
|
||||
Loading…
Add table
Add a link
Reference in a new issue