.dockerignore 245 B

123456789101112131415161718192021222324252627
  1. # Build directory
  2. builddir/
  3. # Git
  4. .git/
  5. .gitignore
  6. # IDE/Editor files
  7. .vscode/
  8. .idea/
  9. *.swp
  10. *.swo
  11. *~
  12. # Documentation
  13. *.md
  14. !README.md
  15. # VAPI files (not needed at runtime, only build)
  16. vapi/
  17. # Any compiled objects
  18. *.o
  19. *.a
  20. # Test files
  21. tests/