Dockerfile: Pin ngtcp2 and nghttp3 versions

This commit is contained in:
Tatsuhiro Tsujikawa 2022-02-23 16:41:17 +09:00
parent abd6bb6818
commit 89e49f1066
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ RUN git clone --depth 1 -b OpenSSL_1_1_1m+quic https://github.com/quictls/openss
cd .. && \
rm -rf openssl
RUN git clone --depth 1 https://github.com/ngtcp2/nghttp3 && \
RUN git clone --depth 1 -b v0.2.0 https://github.com/ngtcp2/nghttp3 && \
cd nghttp3 && \
autoreconf -i && \
./configure --enable-lib-only && \
@ -24,7 +24,7 @@ RUN git clone --depth 1 https://github.com/ngtcp2/nghttp3 && \
cd .. && \
rm -rf nghttp3
RUN git clone --depth 1 -b v0.1.0 https://github.com/ngtcp2/ngtcp2 && \
RUN git clone --depth 1 -b v0.2.0 https://github.com/ngtcp2/ngtcp2 && \
cd ngtcp2 && \
autoreconf -i && \
./configure --enable-lib-only \