Dockerfile.dockerignore 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. # Keep locale template .md files required at runtime by the installer
  36. !apps/app/resource/locales/**/*.md
  37. # ============================================================
  38. # Local environment overrides
  39. # ============================================================
  40. .env.local
  41. .env.*.local
  42. # ============================================================
  43. # IDE and editor settings
  44. # ============================================================
  45. .vscode
  46. .idea
  47. **/.DS_Store
  48. # ============================================================
  49. # CI/CD, DevOps, and project management
  50. # ============================================================
  51. .changeset
  52. .devcontainer
  53. .github
  54. aws
  55. bin
  56. # ============================================================
  57. # Linter, formatter, and tool configs (not needed for build)
  58. # ============================================================
  59. **/.editorconfig
  60. **/.markdownlint.yml
  61. **/.prettier*
  62. **/.stylelintrc*
  63. **/biome.json
  64. **/lefthook.yml
  65. # ============================================================
  66. # AI agent configuration
  67. # ============================================================
  68. **/.claude
  69. **/.kiro
  70. **/.mcp.json
  71. **/.serena