Update Dockerfile to use I-D 23 branches of ngtcp2 and openssl
This commit is contained in:
parent
73fd20a608
commit
558970e281
|
@ -5,13 +5,13 @@ RUN /usr/local/bin/clean-install git g++ make binutils autoconf automake autotoo
|
||||||
zlib1g libev4 libjemalloc1 libc-ares2 \
|
zlib1g libev4 libjemalloc1 libc-ares2 \
|
||||||
ca-certificates psmisc \
|
ca-certificates psmisc \
|
||||||
python && \
|
python && \
|
||||||
git clone --depth 1 -b openssl-quic-draft-22 https://github.com/tatsuhiro-t/openssl && \
|
git clone --depth 1 -b openssl-quic-draft-23 https://github.com/tatsuhiro-t/openssl && \
|
||||||
cd openssl && ./config enable-tls1_3 --openssldir=/etc/ssl && make -j$(nproc) && make install_sw && cd .. && rm -rf openssl && \
|
cd openssl && ./config enable-tls1_3 --openssldir=/etc/ssl && make -j$(nproc) && make install_sw && cd .. && rm -rf openssl && \
|
||||||
git clone --depth 1 https://github.com/ngtcp2/nghttp3 && \
|
git clone --depth 1 https://github.com/ngtcp2/nghttp3 && \
|
||||||
cd nghttp3 && autoreconf -i && \
|
cd nghttp3 && autoreconf -i && \
|
||||||
./configure --enable-lib-only && \
|
./configure --enable-lib-only && \
|
||||||
make -j$(nproc) && make install-strip && cd .. && rm -rf nghttp3 && \
|
make -j$(nproc) && make install-strip && cd .. && rm -rf nghttp3 && \
|
||||||
git clone --depth 1 -b draft-22 https://github.com/ngtcp2/ngtcp2 && \
|
git clone --depth 1 -b master https://github.com/ngtcp2/ngtcp2 && \
|
||||||
cd ngtcp2 && autoreconf -i && \
|
cd ngtcp2 && autoreconf -i && \
|
||||||
./configure && \
|
./configure && \
|
||||||
make -j$(nproc) && make install-strip && cd .. && rm -rf ngtcp2 && \
|
make -j$(nproc) && make install-strip && cd .. && rm -rf ngtcp2 && \
|
||||||
|
|
Loading…
Reference in New Issue