diff --git a/docker/Dockerfile.service b/docker/Dockerfile.service index 7e29f28..5b454b2 100644 --- a/docker/Dockerfile.service +++ b/docker/Dockerfile.service @@ -19,7 +19,7 @@ COPY pyproject.toml . # Create minimal package stubs so uv can resolve the local editable install # without copying all source (which would bust the cache on every commit). RUN mkdir -p shared services backtester && \ - uv pip install --system --no-cache-dir ".[api,news,sentiment,trading,backtester,meet_kevin]" && \ + uv pip install --system --no-cache-dir ".[api,news,trading,backtester,meet_kevin]" && \ uv pip install --system --no-cache-dir curl_cffi 2>/dev/null || true # NOW copy the actual source code (changes here don't re-trigger dep install)