From 753d96b62cf7e7ff31d1e34a69c8611767bcfaee Mon Sep 17 00:00:00 2001 From: Michael Rittmeister Date: Thu, 7 Nov 2024 01:35:26 +0100 Subject: [PATCH] Add proper HTTP/2 support --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index fe0bf12..aaa0c77 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM --platform=$TARGETOS/$TARGETARCH debian AS curl # Install build dependencies -RUN apt update && apt install libssl-dev make g++ curl libpsl-dev -y +RUN apt update && apt install libssl-dev make g++ curl libpsl-dev libnghttp2-dev -y # Download curl source from https://curl.se/download/ RUN curl -o curl.tgz https://curl.se/download/curl-8.11.0.tar.gz @@ -26,4 +26,4 @@ COPY --from=curl /usr/local/lib/libcurl.so /usr/lib/libcurl.so COPY --from=curl /usr/local/lib/libcurl.so.4 /usr/lib/libcurl.so.4 COPY --from=curl /usr/local/lib/libcurl.so.4.8.0 /usr/lib/libcurl.so.4.8.0 -RUN apt update && apt install libssl3 ca-certificates psl -y +RUN apt update && apt install libssl3 ca-certificates psl libnghttp2-14 -y