From c90cd1cfb53e3a086416ee0a833158520ecfb9cf Mon Sep 17 00:00:00 2001 From: Neil Horman Date: Thu, 23 Jan 2025 14:14:33 -0500 Subject: [PATCH] update Dockerfile to pull hq-interop code from new location Change the dockerfile to use enable-hqinterop and copy binaries from their new location Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/26546) --- test/quic-openssl-docker/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/quic-openssl-docker/Dockerfile b/test/quic-openssl-docker/Dockerfile index dbdffc78843..348f43673d5 100644 --- a/test/quic-openssl-docker/Dockerfile +++ b/test/quic-openssl-docker/Dockerfile @@ -28,9 +28,9 @@ RUN git clone --depth 1 https://github.com/ngtcp2/nghttp3.git && \ # download and build openssl RUN git clone --depth 1 -b $OPENSSL_BRANCH $OPENSSL_URL && \ cd openssl && \ - ./Configure enable-sslkeylog enable-fips enable-demos enable-h3demo disable-docs --prefix=/usr --openssldir=/etc/pki/tls && \ - make -j 4 && make install && cp demos/guide/quic-hq-interop /usr/local/bin && \ - cp demos/guide/quic-hq-interop-server /usr/local/bin && \ + ./Configure enable-sslkeylog enable-fips enable-demos enable-h3demo enable-hqinterop disable-docs --prefix=/usr --openssldir=/etc/pki/tls && \ + make -j 4 && make install && cp test/quic-openssl-docker/hq-interop/quic-hq-interop /usr/local/bin && \ + cp test/quic-openssl-docker/hq-interop/quic-hq-interop-server /usr/local/bin && \ cp demos/http3/ossl-nghttp3-demo-server /usr/local/bin && \ rm -rf /openssl -- 2.47.2