From b08ed9e5ac6b8acdf4bdbf51b8e1c2244f1ce750 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Mon, 22 Jan 2024 04:50:50 +0000 Subject: [PATCH] Bump nghttp2 and its dependencies --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 32467307..7397966a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,7 +35,7 @@ RUN git clone --depth 1 -b OpenSSL_1_1_1w+quic https://github.com/quictls/openss cd .. && \ rm -rf openssl -RUN git clone --depth 1 -b v1.0.0 https://github.com/ngtcp2/nghttp3 && \ +RUN git clone --depth 1 -b v1.1.0 https://github.com/ngtcp2/nghttp3 && \ cd nghttp3 && \ autoreconf -i && \ ./configure --enable-lib-only && \ @@ -44,7 +44,7 @@ RUN git clone --depth 1 -b v1.0.0 https://github.com/ngtcp2/nghttp3 && \ cd .. && \ rm -rf nghttp3 -RUN git clone --depth 1 -b v1.0.1 https://github.com/ngtcp2/ngtcp2 && \ +RUN git clone --depth 1 -b v1.2.0 https://github.com/ngtcp2/ngtcp2 && \ cd ngtcp2 && \ autoreconf -i && \ ./configure --enable-lib-only \ @@ -56,13 +56,13 @@ RUN git clone --depth 1 -b v1.0.1 https://github.com/ngtcp2/ngtcp2 && \ cd .. && \ rm -rf ngtcp2 -RUN git clone --depth 1 -b v1.2.2 https://github.com/libbpf/libbpf && \ +RUN git clone --depth 1 -b v1.3.0 https://github.com/libbpf/libbpf && \ cd libbpf && \ PREFIX=/usr/local make -C src install && \ cd .. && \ rm -rf libbpf -RUN git clone --depth 1 -b v1.58.0 https://github.com/nghttp2/nghttp2.git && \ +RUN git clone --depth 1 -b v1.59.0 https://github.com/nghttp2/nghttp2.git && \ cd nghttp2 && \ patch -p1 < /extra-mrbgem.patch && \ git submodule update --init && \