From b5a3cccd2d7c32031ed896116f1c838d270b2ed6 Mon Sep 17 00:00:00 2001 From: Michael Rittmeister Date: Sun, 3 Mar 2024 02:55:01 +0100 Subject: [PATCH] Enable http2 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e795138..796b52e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ RUN tar xzvf curl.tgz # Build RUN cd curl-*/ && \ - ./configure --with-openssl --enable-websockets && \ + ./configure --with-openssl --enable-websockets --with-nghttp2 && \ make && make install FROM --platform=$TARGETOS/$TARGETARCH debian