.dockerignore 401 B

123456789101112131415161718192021222324252627282930313233
  1. # 忽略 Python 虚拟环境
  2. venv/
  3. .venv/
  4. env/
  5. # 忽略缓存和编译文件
  6. **/__pycache__/
  7. *.py[cod]
  8. *$py.class
  9. .pytest_cache/
  10. .coverage
  11. htmlcov/
  12. # 忽略 Docker 和本地配置
  13. .git/
  14. .gitignore
  15. .dockerignore
  16. Dockerfile
  17. docker-compose.yml
  18. .env
  19. # 忽略视频处理产生的临时文件(重要!)
  20. scenes_cache/
  21. *.mp4
  22. *.jpg
  23. # 忽略 IDE 配置
  24. .vscode/
  25. .idea/
  26. ai_output/
  27. ai_upload/
  28. README.md