From 0b9a11f928eb4bfc3404efd2dedc00397ca5abf6 Mon Sep 17 00:00:00 2001 From: Matthias 't Jong Date: Sun, 17 May 2026 13:59:42 +0200 Subject: [PATCH] fix: copy local-mcp scripts into Docker runtime image The blind-fill MCP script at src/local-mcp/ needs to be available at runtime for GET /api/local-mcp/blind-fill to serve it. Co-Authored-By: Claude Opus 4.6 (1M context) --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index da38fc4..634be77 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,7 @@ COPY --from=builder /app/build ./build COPY --from=builder /app/package.json ./ COPY --from=builder /app/package-lock.json ./ COPY --from=builder /app/drizzle ./drizzle +COPY --from=builder /app/src/local-mcp ./local-mcp RUN npm ci --omit=dev RUN apk add --no-cache curl HEALTHCHECK --interval=30s --timeout=10s --start-period=60s CMD curl -sf http://localhost:3000/health || exit 1