From: Neil Horman Date: Thu, 23 Jan 2025 19:14:33 +0000 (-0500) Subject: update Dockerfile to pull hq-interop code from new location X-Git-Tag: openssl-3.5.0-alpha1~247 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c90cd1cfb53e3a086416ee0a833158520ecfb9cf;p=thirdparty%2Fopenssl.git 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) --- 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