.dockerignore 443 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # Git相关
  2. .git
  3. .gitignore
  4. .gitattributes
  5. # Python相关
  6. __pycache__
  7. *.pyc
  8. *.pyo
  9. *.pyd
  10. .Python
  11. *.egg-info/
  12. dist/
  13. build/
  14. *.egg
  15. .pytest_cache/
  16. .coverage
  17. htmlcov/
  18. # 虚拟环境
  19. venv/
  20. env/
  21. ENV/
  22. .venv
  23. # IDE相关
  24. .vscode/
  25. .idea/
  26. *.swp
  27. *.swo
  28. *~
  29. .DS_Store
  30. # 输出文件
  31. output/
  32. logs/
  33. *.log
  34. # 临时文件
  35. tmp/
  36. temp/
  37. *.tmp
  38. # 文档
  39. *.md
  40. doc/
  41. docs/
  42. # 开发工具
  43. .editorconfig
  44. .pre-commit-config.yaml
  45. Makefile
  46. # 不需要的目录
  47. .github/