.dockerignore 812 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # Git
  2. .git
  3. .gitignore
  4. .gitmodules
  5. # Documentation
  6. *.md
  7. docs/
  8. # Development files
  9. .vscode/
  10. .idea/
  11. *.swp
  12. *.swo
  13. *~
  14. # OS generated files
  15. .DS_Store
  16. .DS_Store?
  17. ._*
  18. .Spotlight-V100
  19. .Trashes
  20. ehthumbs.db
  21. Thumbs.db
  22. # Build artifacts
  23. # bin/ (commented out for Docker build - needed for mount container)
  24. # target/ (commented out for Docker build)
  25. *.exe
  26. *.dll
  27. *.so
  28. *.dylib
  29. # Go specific
  30. vendor/
  31. *.test
  32. *.prof
  33. go.work
  34. go.work.sum
  35. # Rust specific
  36. Cargo.lock
  37. # rdma-engine/target/ (commented out for Docker build)
  38. *.pdb
  39. # Docker
  40. Dockerfile*
  41. docker-compose*.yml
  42. .dockerignore
  43. # Test files (tests/ needed for integration test container)
  44. # tests/
  45. # scripts/ (commented out for Docker build - needed for mount container)
  46. *.log
  47. # Temporary files
  48. tmp/
  49. temp/
  50. *.tmp
  51. *.temp
  52. # IDE and editor files
  53. *.sublime-*
  54. .vscode/
  55. .idea/