]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
update Dockerfile to pull hq-interop code from new location
authorNeil Horman <nhorman@openssl.org>
Thu, 23 Jan 2025 19:14:33 +0000 (14:14 -0500)
committerNeil Horman <nhorman@openssl.org>
Mon, 17 Feb 2025 16:27:33 +0000 (11:27 -0500)
Change the dockerfile to use enable-hqinterop and copy binaries from
their new location

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26546)

test/quic-openssl-docker/Dockerfile

index dbdffc788437d33971ca219959e349c47de949b5..348f43673d58bd173b7482708d7de0ec587121c6 100644 (file)
@@ -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