From 83b4d0c28302601d97def70565b3cdb501acea27 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 15 Jul 2026 15:11:21 +0000 Subject: [PATCH 1/2] Initial plan From 2e2bc30eaafe361a0a0637f4084f73baa1e8f02b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 15 Jul 2026 15:15:50 +0000 Subject: [PATCH 2/2] fix docker CI image smoke test --- .github/workflows/ci.yml | 1 + docker/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4bc9b51..4d3d007 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -167,6 +167,7 @@ jobs: context: . file: docker/Dockerfile push: false + load: true tags: chen:ci cache-from: type=gha cache-to: type=gha,mode=max diff --git a/docker/Dockerfile b/docker/Dockerfile index 8f052bb..c5b594b 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -34,7 +34,7 @@ COPY src/ ./src/ # Install with server + dev extras (no hf — too large for default image) RUN pip install --no-cache-dir --upgrade pip \ - && pip install --no-cache-dir -e ".[server,dev]" + && pip install --no-cache-dir ".[server,dev]" # ---------- Stage 2: runtime ---------- FROM python:3.11-slim AS runtime