封装成docker

This commit is contained in:
2025-12-30 09:12:42 +00:00
parent 32294ebec1
commit df74a5414b
3 changed files with 129 additions and 0 deletions

60
.dockerignore Normal file
View File

@@ -0,0 +1,60 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
*.egg
# Virtual Environment
venv/
env/
ENV/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Git
.git/
.gitignore
# Database
*.db
*.sqlite
*.sqlite3
instance/
# Logs
*.log
# Environment variables
.env
.env.local
# Node modules (if any)
node_modules/
# Cache
.cache/
.pytest_cache/
# Documentation
README.md
docs/
# Start script (not needed in container)
start.py
main.py
pyproject.toml
.python-version