添加docker构建配置

This commit is contained in:
2025-12-13 20:36:31 +08:00
parent 307573ba1b
commit b32e1d25d1
15 changed files with 995 additions and 842 deletions

48
.dockerignore Normal file
View File

@@ -0,0 +1,48 @@
# Git
.git
.gitignore
# Node
node_modules
npm-debug.log
# Python
__pycache__
*.pyc
*.pyo
*.pyd
.Python
*.egg-info
dist
build
# IDE
.vscode
.idea
*.swp
*.swo
*~
# 环境变量
.env
.env.local
.env.backup
**/.env.local
**/.env.production.local
**/.env.development.local
# 日志
*.log
logs
# 测试
test
*.test.js
# 临时文件
*.tmp
.DS_Store
Thumbs.db
# README
README.md