Skip to content

Commit

Permalink
Merge pull request #389 from zlabjp/bump-nghttp2
Browse files Browse the repository at this point in the history
Bump nghttp2 and its dependencies
  • Loading branch information
tatsuhiro-t authored Aug 28, 2024
2 parents c56fe88 + 4bc5386 commit 1a87be3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ RUN apt-get update && \
git clang gcc make binutils autoconf automake autotools-dev libtool pkg-config cmake cmake-data \
zlib1g-dev libev-dev libjemalloc-dev ruby-dev libc-ares-dev bison libelf-dev patch libbrotli-dev

RUN git clone --depth 1 -b v1.29.0 https://github.com/aws/aws-lc && \
RUN git clone --depth 1 -b v1.34.2 https://github.com/aws/aws-lc && \
cd aws-lc && \
cmake -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo -DDISABLE_GO=ON && \
make -j$(nproc) -C build && \
cmake --install build && \
cd .. && \
rm -rf aws-lc

RUN git clone --recursive --shallow-submodules --depth 1 -b v1.4.0 https://github.com/ngtcp2/nghttp3 && \
RUN git clone --recursive --shallow-submodules --depth 1 -b v1.5.0 https://github.com/ngtcp2/nghttp3 && \
cd nghttp3 && \
autoreconf -i && \
./configure --enable-lib-only && \
Expand All @@ -44,7 +44,7 @@ RUN git clone --recursive --shallow-submodules --depth 1 -b v1.4.0 https://githu
cd .. && \
rm -rf nghttp3

RUN git clone --recursive --shallow-submodules --depth 1 -b v1.6.0 https://github.com/ngtcp2/ngtcp2 && \
RUN git clone --recursive --shallow-submodules --depth 1 -b v1.7.0 https://github.com/ngtcp2/ngtcp2 && \
cd ngtcp2 && \
autoreconf -i && \
./configure --enable-lib-only --with-boringssl \
Expand All @@ -56,13 +56,13 @@ RUN git clone --recursive --shallow-submodules --depth 1 -b v1.6.0 https://githu
cd .. && \
rm -rf ngtcp2

RUN git clone --depth 1 -b v1.4.2 https://github.com/libbpf/libbpf && \
RUN git clone --depth 1 -b v1.4.5 https://github.com/libbpf/libbpf && \
cd libbpf && \
PREFIX=/usr/local make -C src install && \
cd .. && \
rm -rf libbpf

RUN git clone --recursive --shallow-submodules --depth 1 -b v1.62.1 https://github.com/nghttp2/nghttp2.git && \
RUN git clone --recursive --shallow-submodules --depth 1 -b v1.63.0 https://github.com/nghttp2/nghttp2.git && \
cd nghttp2 && \
patch -p1 < /extra-mrbgem.patch && \
autoreconf -i && \
Expand Down

0 comments on commit 1a87be3

Please sign in to comment.