.dockerignore 460 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # Git
  2. .git
  3. .gitignore
  4. # Python
  5. __pycache__
  6. *.py[cod]
  7. *$py.class
  8. *.so
  9. .Python
  10. venv/
  11. .venv/
  12. ENV/
  13. env/
  14. .env
  15. *.egg-info/
  16. .eggs/
  17. dist/
  18. build/
  19. # Node
  20. frontend/node_modules/
  21. frontend/.npm
  22. # IDE
  23. .idea/
  24. .vscode/
  25. *.swp
  26. *.swo
  27. # Testing
  28. .pytest_cache/
  29. .coverage
  30. htmlcov/
  31. # Logs and data (will be mounted as volumes)
  32. logs/
  33. data/
  34. *.log
  35. *.db
  36. # Build artifacts
  37. static/
  38. # Documentation
  39. docs/
  40. *.md
  41. !requirements.txt
  42. # Docker
  43. Dockerfile
  44. docker-compose*.yml
  45. .dockerignore