From a07172b0c041dcdea9fc568668dfbea62c9b3d4f Mon Sep 17 00:00:00 2001 From: Patrick Buckley Date: Mon, 23 Mar 2026 15:23:12 -0700 Subject: [PATCH] fix: include ddg extra in Docker image for free web search fallback --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 75fb91a1..c46b9989 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,12 +25,12 @@ ENV UV_COMPILE_BYTECODE=1 # Install dependencies first (cached layer — only re-runs when deps change) COPY pyproject.toml uv.lock README.md LICENSE ./ RUN uv sync --frozen --no-install-project --no-dev \ - --extra mq --extra console --extra sim --extra postgres --extra discord --extra anthropic + --extra mq --extra console --extra sim --extra postgres --extra discord --extra anthropic --extra ddg # Install the project itself COPY turnstone/ turnstone/ RUN uv sync --frozen --no-dev \ - --extra mq --extra console --extra sim --extra postgres --extra discord --extra anthropic + --extra mq --extra console --extra sim --extra postgres --extra discord --extra anthropic --extra ddg # Add venv to PATH so entry points are found ENV PATH="/app/.venv/bin:$PATH"