Dockerfile.dockerignore 670 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # Dependencies and build caches
  2. **/node_modules
  3. **/.pnpm-store
  4. **/coverage
  5. **/.next
  6. **/.turbo
  7. out
  8. # Docker files (prevent recursive context)
  9. **/Dockerfile
  10. **/*.dockerignore
  11. # Git
  12. .git
  13. # IDE and editor settings
  14. .vscode
  15. .idea
  16. **/.DS_Store
  17. # Test files
  18. **/*.spec.*
  19. **/*.test.*
  20. **/test/
  21. **/__tests__/
  22. **/playwright/
  23. # Documentation (not needed for build)
  24. **/*.md
  25. !**/README.md
  26. # Environment files (secrets)
  27. .env
  28. .env.*
  29. !.env.production
  30. !.env.production.local
  31. # Unrelated apps
  32. apps/slackbot-proxy
  33. apps/pdf-converter
  34. # CI/CD and config
  35. .github
  36. .circleci
  37. **/.eslintrc*
  38. **/.prettierrc*
  39. **/biome.json
  40. **/tsconfig*.json
  41. !apps/app/tsconfig*.json
  42. !packages/*/tsconfig*.json