.dockerignore 481 B

123456789101112131415161718192021222324252627282930313233
  1. # Exclude common build and development files
  2. bin/
  3. obj/
  4. .vscode/
  5. .vs/
  6. .idea/
  7. *.sln.DotSettings.user
  8. # Exclude version control files
  9. .git/
  10. .gitignore
  11. .gitattributes
  12. # Exclude macOS specific files
  13. .DS_Store
  14. # Exclude user-specific or editor-specific files
  15. *.user
  16. *.suo
  17. *.suo.user
  18. *.userprefs
  19. # Exclude NuGet package cache
  20. packages/
  21. *.nupkg
  22. # Exclude build scripts or configuration files
  23. build/
  24. *.bat
  25. *.cmd
  26. *.ps1
  27. # Exclude any other files or directories not needed for the image