From 72f2fb2339906de8419a142fd25ed6573ff3d4b4 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 6 May 2026 23:12:55 +0000 Subject: [PATCH] fix(quic-interop): picoquicdemo binary lives at /picoquic/picoquicdemo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Confirmed via `docker run --entrypoint find privateoctopus/picoquic:latest / -name picoquicdemo` — the binary isn't on PATH inside the image. Use the absolute path so smoke runs without depending on PATH defaults. https://claude.ai/code/session_01HcvfQq1ttPV9PkRoJb4nyT --- quic/interop/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quic/interop/Makefile b/quic/interop/Makefile index b1d93c8ad..115c3d4f7 100644 --- a/quic/interop/Makefile +++ b/quic/interop/Makefile @@ -38,7 +38,7 @@ smoke: docker smoke-down docker network create $(SMOKE_NET) >/dev/null 2>&1 || true docker run -d --name $(SMOKE_PICOQUIC) \ --network $(SMOKE_NET) \ - --entrypoint picoquicdemo \ + --entrypoint /picoquic/picoquicdemo \ privateoctopus/picoquic:latest -p 4433 >/dev/null @PICOQUIC_IP=$$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(SMOKE_PICOQUIC)); \ echo "picoquic at $$PICOQUIC_IP:4433 (in $(SMOKE_NET))"; \