feat: add Docker deployment configuration
添加 Docker 部署支持: - Dockerfile: 多阶段构建,包含 ffmpeg 依赖 - docker-compose.yml: 配置端口映射和持久化目录 - .dockerignore: 优化构建上下文 Co-Authored-By: AI
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
# 忽略构建产物
|
||||
build/
|
||||
*.exe
|
||||
*.exe~
|
||||
*.dll
|
||||
*.so
|
||||
*.dylib
|
||||
|
||||
# 忽略开发文件
|
||||
.git/
|
||||
.gitignore
|
||||
.vscode/
|
||||
.idea/
|
||||
*.md
|
||||
!README.md
|
||||
|
||||
# 忽略 node_modules
|
||||
web/node_modules/
|
||||
|
||||
# 忽略数据文件
|
||||
data/
|
||||
downloads/
|
||||
*.db
|
||||
*.db-journal
|
||||
|
||||
# 忽略临时文件
|
||||
*.log
|
||||
*.tmp
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
Reference in New Issue
Block a user