.dockerignore 661 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # Dependencies (will be installed in container)
  2. node_modules
  3. # Build output (will be built in container)
  4. dist
  5. build
  6. # Development files
  7. *.dev
  8. Dockerfile.dev
  9. Dockerfile.optimized
  10. # Environment files (secrets - NEVER include)
  11. .env
  12. .env.*
  13. !.env.example
  14. # IDE and editor files
  15. .vscode
  16. .idea
  17. *.swp
  18. *.swo
  19. *~
  20. # OS files
  21. .DS_Store
  22. Thumbs.db
  23. # Git
  24. .git
  25. .gitignore
  26. .gitattributes
  27. # Testing
  28. coverage
  29. .nyc_output
  30. *.test.ts
  31. *.test.tsx
  32. *.spec.ts
  33. *.spec.tsx
  34. __tests__
  35. # Logs
  36. *.log
  37. npm-debug.log*
  38. yarn-debug.log*
  39. yarn-error.log*
  40. # Cache
  41. .cache
  42. .vite
  43. .eslintcache
  44. .parcel-cache
  45. *.md
  46. !README.md
  47. docs
  48. # CI/CD
  49. .github
  50. .gitlab-ci.yml
  51. .circleci
  52. # Misc
  53. *.bak
  54. *.tmp
  55. .husky