.dockerignore 429 B

1234567891011121314151617181920212223242526272829303132
  1. # Ignore git metadata
  2. .git
  3. .gitignore
  4. # Node modules and build artifacts
  5. node_modules
  6. .next
  7. out
  8. coverage
  9. dist
  10. # Local env files (will be provided via runtime)
  11. .env
  12. .env.*
  13. !.env.example
  14. # Editor/IDE
  15. .vscode
  16. .idea
  17. # Logs and misc
  18. *.log
  19. npm-debug.log*
  20. yarn-debug.log*
  21. yarn-error.log*
  22. # Data directories (PostgreSQL, Redis persistent data)
  23. data/redis
  24. data/postgres
  25. # Documentation submodule (not needed in container)
  26. docs-site