# Build-context excludes for all images built from the repo root
# (lemma-backend, lemma-frontend, agentbox-runtime). Keeps host-only artifacts
# out of the image — critically a host .venv, whose interpreter symlinks/shebangs
# point at the build machine and break `alembic`/`python` inside the container.

# Python
**/.venv
**/__pycache__
**/*.py[cod]
**/.pytest_cache
**/.ruff_cache
**/.mypy_cache
**/*.egg-info

# Node / frontend
**/node_modules
**/.next
**/dist

# VCS / tooling / OS
**/.git
**/.gitignore
**/.DS_Store
