.dockerignore 532 B

123456789101112131415161718192021222324252627282930313233343536
  1. # Exclude everything not needed for the multi-stage build to keep context small.
  2. .git
  3. .gitignore
  4. .github
  5. .vscode
  6. .idea
  7. .claude
  8. build/
  9. data/
  10. **/node_modules/
  11. web/dist/
  12. web/build/
  13. **/__pycache__/
  14. *.pyc
  15. *.pyo
  16. *.exe
  17. *.dll
  18. *.so
  19. *.dylib
  20. *.test
  21. *.out
  22. .DS_Store
  23. Thumbs.db
  24. Dockerfile
  25. .dockerignore
  26. # Documentation is fine in build context but not strictly required; keep README
  27. # available for reference and exclude everything else markdown.
  28. *.md
  29. !README.md
  30. # Local-only scripts and scratch output.
  31. build/lists/
  32. *.cookies
  33. *.session
  34. vc.jar