fix(quic-interop): picoquicdemo binary lives at /picoquic/picoquicdemo
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
This commit is contained in:
@@ -38,7 +38,7 @@ smoke: docker smoke-down
|
|||||||
docker network create $(SMOKE_NET) >/dev/null 2>&1 || true
|
docker network create $(SMOKE_NET) >/dev/null 2>&1 || true
|
||||||
docker run -d --name $(SMOKE_PICOQUIC) \
|
docker run -d --name $(SMOKE_PICOQUIC) \
|
||||||
--network $(SMOKE_NET) \
|
--network $(SMOKE_NET) \
|
||||||
--entrypoint picoquicdemo \
|
--entrypoint /picoquic/picoquicdemo \
|
||||||
privateoctopus/picoquic:latest -p 4433 >/dev/null
|
privateoctopus/picoquic:latest -p 4433 >/dev/null
|
||||||
@PICOQUIC_IP=$$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(SMOKE_PICOQUIC)); \
|
@PICOQUIC_IP=$$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(SMOKE_PICOQUIC)); \
|
||||||
echo "picoquic at $$PICOQUIC_IP:4433 (in $(SMOKE_NET))"; \
|
echo "picoquic at $$PICOQUIC_IP:4433 (in $(SMOKE_NET))"; \
|
||||||
|
|||||||
Reference in New Issue
Block a user