.dockerignore 555 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. __pycache__/
  2. *.py[cod]
  3. *$py.class
  4. *.so
  5. .Python
  6. *.egg-info/
  7. *.egg
  8. .eggs/
  9. .venv/
  10. venv/
  11. ENV/
  12. env/
  13. .vscode/
  14. .idea/
  15. *.swp
  16. *.swo
  17. *~
  18. .DS_Store
  19. .git/
  20. .gitignore
  21. .gitattributes
  22. .pytest_cache/
  23. .coverage
  24. htmlcov/
  25. .tox/
  26. .mypy_cache/
  27. .hypothesis/
  28. .ruff_cache/
  29. flowsint-app/node_modules/
  30. flowsint-app/dist/
  31. flowsint-app/.vite/
  32. flowsint-app/coverage/
  33. .env
  34. .env.*
  35. !.env.example
  36. *.local
  37. *.log
  38. logs/
  39. docker-compose*.yml
  40. Dockerfile.dev
  41. Dockerfile.optimized
  42. .dockerignore
  43. .github/
  44. .gitlab-ci.yml
  45. *.md
  46. !README.md
  47. docs/
  48. dist/
  49. build/
  50. *.bak
  51. *.tmp
  52. temp/
  53. tmp/
  54. Makefile