Dockerfile.dockerignore 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # ============================================================
  2. # Build artifacts and caches
  3. # ============================================================
  4. **/node_modules
  5. **/.next
  6. **/.turbo
  7. **/.pnpm-store
  8. **/coverage
  9. out
  10. # ============================================================
  11. # Version control
  12. # ============================================================
  13. .git
  14. # ============================================================
  15. # Docker files (prevent recursive inclusion)
  16. # ============================================================
  17. **/Dockerfile
  18. **/*.dockerignore
  19. # ============================================================
  20. # Unrelated apps
  21. # ============================================================
  22. apps/slackbot-proxy
  23. # ============================================================
  24. # Test files
  25. # ============================================================
  26. **/*.spec.*
  27. **/*.test.*
  28. **/test/
  29. **/__tests__/
  30. **/playwright/
  31. # ============================================================
  32. # Documentation (no .md files are needed for build)
  33. # ============================================================
  34. **/*.md
  35. # ============================================================
  36. # Local environment overrides
  37. # ============================================================
  38. .env.local
  39. .env.*.local
  40. # ============================================================
  41. # IDE and editor settings
  42. # ============================================================
  43. .vscode
  44. .idea
  45. **/.DS_Store
  46. # ============================================================
  47. # CI/CD, DevOps, and project management
  48. # ============================================================
  49. .changeset
  50. .devcontainer
  51. .github
  52. aws
  53. bin
  54. # ============================================================
  55. # Linter, formatter, and tool configs (not needed for build)
  56. # ============================================================
  57. **/.editorconfig
  58. **/.markdownlint.yml
  59. **/.prettier*
  60. **/.stylelintrc*
  61. **/biome.json
  62. **/lefthook.yml
  63. # ============================================================
  64. # AI agent configuration
  65. # ============================================================
  66. **/.claude
  67. **/.kiro
  68. **/.mcp.json
  69. **/.serena