.dockerignore 378 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # Git
  2. .git
  3. .gitignore
  4. # Python
  5. __pycache__
  6. *.py[cod]
  7. *$py.class
  8. *.so
  9. .Python
  10. .pytest_cache
  11. .hypothesis
  12. *.egg-info
  13. dist
  14. build
  15. # 虚拟环境
  16. venv
  17. .venv
  18. env
  19. .env
  20. # IDE
  21. .idea
  22. .vscode
  23. *.swp
  24. *.swo
  25. # 测试
  26. test/
  27. *.test.py
  28. test_*.py
  29. pytest.ini
  30. .coverage
  31. htmlcov
  32. # 文档
  33. *.md
  34. !README.md
  35. # 本地数据库(容器内会重新创建)
  36. *.db
  37. # 临时文件
  38. *.log
  39. *.tmp
  40. .DS_Store