Skip to content

Commit

Permalink
Add proper HTTP/2 support
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi authored Nov 7, 2024
1 parent 359814f commit 753d96b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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

0 comments on commit 753d96b

Please sign in to comment.