.dockerignore 799 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # Dependencies
  2. node_modules
  3. .pnp
  4. .pnp.*
  5. .yarn/*
  6. !.yarn/patches
  7. !.yarn/plugins
  8. !.yarn/releases
  9. !.yarn/versions
  10. # Testing
  11. coverage
  12. # Next.js
  13. .next
  14. out
  15. # Production build artifacts (rebuilt in container)
  16. build
  17. # Misc
  18. .DS_Store
  19. *.pem
  20. # Debug logs
  21. npm-debug.log*
  22. yarn-debug.log*
  23. yarn-error.log*
  24. .pnpm-debug.log*
  25. # Local env files (never bake secrets into the image)
  26. .env
  27. .env.*
  28. !.env.example
  29. # Vercel
  30. .vercel
  31. # TypeScript
  32. *.tsbuildinfo
  33. next-env.d.ts
  34. # Docker (avoid copying Docker-related files into context)
  35. Dockerfile
  36. .dockerignore
  37. docker-compose*.yml
  38. docker-compose*.yaml
  39. # Git
  40. .git
  41. .gitignore
  42. .gitattributes
  43. # Documentation (optional to exclude; remove these lines if you want docs in the image)
  44. docs
  45. README.md
  46. AGENTS.md
  47. CLAUDE.md
  48. # IDE / editor
  49. .vscode
  50. .idea
  51. *.swp
  52. *.swo
  53. # OS
  54. Thumbs.db