From e7412361c7d9cf18e7725f388a7cd2ae0650a30f Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 21 Jul 2026 09:34:39 +0000 Subject: [PATCH] Add trustedproxy to the proxy image build context 724c6a0 introduced the top-level trustedproxy package and the proxy imports it, but proxy/Dockerfile.multistage enumerates copied directories and was not updated, so the agent-network e2e harness failed to build the proxy image (module provides no such package). The combined and client images COPY the whole tree and are unaffected. --- proxy/Dockerfile.multistage | 1 + 1 file changed, 1 insertion(+) diff --git a/proxy/Dockerfile.multistage b/proxy/Dockerfile.multistage index 01e342c0e..976984256 100644 --- a/proxy/Dockerfile.multistage +++ b/proxy/Dockerfile.multistage @@ -14,6 +14,7 @@ COPY proxy ./proxy COPY route ./route COPY shared ./shared COPY sharedsock ./sharedsock +COPY trustedproxy ./trustedproxy COPY upload-server ./upload-server COPY util ./util COPY version ./version