# Keep the Docker build context minimal and secret-free.
# VCS + CI
.git
.github
# Python build/test cruft
**/__pycache__/
**/*.py[cod]
**/*.egg-info/
**/build/
**/dist/
**/.pytest_cache/
**/.mypy_cache/
**/.ruff_cache/
**/.coverage
**/htmlcov/
.tox/
# Environments + secrets (never in the image)
**/.venv/
**/venv/
**/env/
**/.env
**/.env.*
!**/.env.example
# Local databases / state (never in the image)
**/*.db
**/*.sqlite
**/*.sqlite3
.sibyl-memory/
# Private schema (never publish)
sibyl-plugin-schema/
# Docs + editor
docs/
.vscode/
.idea/
# Other monorepo packages the MCP image does not need in context
sibyl-memory-cli/
sibyl-memory-langgraph/
