docker: add Dockerfile + requirements + .dockerignore for containerized deployment
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
# Python
|
||||
__pycache__/
|
||||
*.pyc
|
||||
*.pyo
|
||||
*.pyd
|
||||
*.egg-info/
|
||||
.venv/
|
||||
venv/
|
||||
|
||||
# Git & CI
|
||||
.git/
|
||||
.gitignore
|
||||
|
||||
# Flask instance (SQLite + uploads) — 运行时生成,不进镜像
|
||||
instance/
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
*.db
|
||||
|
||||
# 交付物 & 生成测试脚本(非源码)
|
||||
deliverables/
|
||||
*.sh
|
||||
/tmp/
|
||||
|
||||
# 构建中间产物
|
||||
Dockerfile
|
||||
.dockerignore
|
||||
Reference in New Issue
Block a user