.dockerignore 366 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Python caches
  2. __pycache__
  3. *.pyc
  4. *.pyo
  5. *.pyd
  6. # VCS
  7. .git
  8. .gitignore
  9. # Virtual envs
  10. .venv
  11. venv
  12. env
  13. # Byte-compiled / optimized / DLL files
  14. .mypy_cache
  15. .pytest_cache
  16. .ruff_cache
  17. # OS files
  18. .DS_Store
  19. Thumbs.db
  20. # Build artifacts
  21. build
  22. dist
  23. *.egg-info
  24. # Data/logs/outputs
  25. logs
  26. output
  27. data
  28. # Local configs
  29. .env
  30. *.local
  31. *.secret
  32. *.secrets
  33. *.bak
  34. # IDE
  35. .vscode
  36. .idea