Files
ai_proxy/.dockerignore

50 lines
493 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# .dockerignore
# 忽略不需要打包到镜像的文件
# Git
.git
.gitignore
.gitattributes
# IDE
.vscode
.idea
*.swp
*.swo
*~
# 日志和临时文件
*.log
log/
logs/
tmp/
temp/
# 数据文件
data/
uploads/
*.db
*.sqlite
# Node modules (会在构建时重新安装)
web/node_modules/
web/dist/
# Go
server/server
server/*.exe
server/*.test
server/*.out
# 文档
*.md
docs/
# 配置文件(保留 config.docker.yaml
server/config.yaml
config.yaml
# 其他
.DS_Store
Thumbs.db