.dockerignore 527 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # Git
  2. .git
  3. .gitignore
  4. .gitattributes
  5. # Docker
  6. Dockerfile
  7. Dockerfile.base
  8. docker/
  9. .dockerignore
  10. # IDE
  11. .vscode/
  12. .idea/
  13. *.swp
  14. *.swo
  15. *~
  16. # Logs
  17. logs/
  18. *.log
  19. gunicorn_log/
  20. # Python
  21. __pycache__/
  22. *.pyc
  23. *.pyo
  24. *.egg-info/
  25. .eggs/
  26. *.egg
  27. # Virtual env (should not be in image)
  28. venv/
  29. .venv/
  30. # OS
  31. .DS_Store
  32. Thumbs.db
  33. # Docker build artifacts
  34. *.tar
  35. *.tar.gz
  36. # Env files
  37. .env
  38. .env.*
  39. !.env.example
  40. # Test files
  41. tests/
  42. test_*.py
  43. *_test.py
  44. # CI/CD
  45. .github/
  46. .gitlab-ci.yml
  47. # Documentation
  48. *.md
  49. LICENSE
  50. # Temporary files
  51. tmp/
  52. temp/
  53. *.tmp