.dockerignore 459 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # Version control
  2. # .git/
  3. # .gitignore
  4. # .gitattributes
  5. # .git-blame-ignore-revs
  6. # .gitconfig
  7. # Build artifacts
  8. bin/
  9. dist/
  10. **/dist/
  11. out/
  12. **/out/
  13. # Dependencies
  14. node_modules/
  15. **/node_modules/
  16. # Test and development files
  17. coverage/
  18. **/.vscode-test/
  19. # Configuration files
  20. # .env*
  21. knip.json
  22. .husky/
  23. # CI/CD
  24. # .changeset/
  25. # .github/
  26. # ellipsis.yaml
  27. # OS specific
  28. .DS_Store
  29. # Logs
  30. logs/
  31. *.log
  32. # Nix
  33. # flake.lock
  34. # flake.nix
  35. # Monorepo
  36. benchmark/exercises/