Dockerfile.dockerignore 2.2 KB

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