# Dockerfile.server-specific build context exclusions. # This keeps server-only exclusions out of the shared .dockerignore used by # the default CLI Dockerfile build. __pycache__/ .venv/ build/ dist/ # Version control .git/ .gitignore # Environment and secrets .env .env.* # Private keys and credentials *.pem *.key *.p12 *.pfx credentials*.json # Test suites and docs (not needed in server image context) features/ robot/ benchmarks/ docs/ k8s/ # Tool caches .mypy_cache/ .ruff_cache/ .pytest_cache/ htmlcov/ # IDE and editor files .vscode/ .idea/