From 4b5bcb56bc08cf76c1b6a40336fc36842f4d45cc Mon Sep 17 00:00:00 2001 From: George Liu Date: Wed, 22 Jul 2020 19:19:31 +1000 Subject: [PATCH] fix quic branch Dockerfile libjemalloc1 package doesn't exist as it's now libjemalloc2 named Get:1 http://security.debian.org/debian-security buster/updates InRelease [65.4 kB] Get:2 http://deb.debian.org/debian buster InRelease [121 kB] Get:3 http://deb.debian.org/debian buster-updates InRelease [51.9 kB] Get:4 http://security.debian.org/debian-security buster/updates/main amd64 Packages [213 kB] Get:5 http://deb.debian.org/debian buster/main amd64 Packages [7905 kB] Get:6 http://deb.debian.org/debian buster-updates/main amd64 Packages [7868 B] Fetched 8364 kB in 1s (6499 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... E: Unable to locate package libjemalloc1 fix reference to OpenSSL 1.1.1 branch Cloning into 'openssl'... warning: Could not find remote branch OpenSSL_1_1_1d-quic-draft-29 to clone. fatal: Remote branch OpenSSL_1_1_1d-quic-draft-29 not found in upstream origin --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index cfb7c92c..bfd902f6 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -2,10 +2,10 @@ FROM k8s.gcr.io/debian-base-amd64:v2.0.0 RUN /usr/local/bin/clean-install git g++ make binutils autoconf automake autotools-dev libtool pkg-config \ zlib1g-dev libev-dev libjemalloc-dev ruby-dev libc-ares-dev bison \ - zlib1g libev4 libjemalloc1 libc-ares2 \ + zlib1g libev4 libjemalloc2 libc-ares2 \ ca-certificates psmisc \ python && \ - git clone --depth 1 -b OpenSSL_1_1_1d-quic-draft-29 https://github.com/tatsuhiro-t/openssl && \ + git clone --depth 1 -b OpenSSL_1_1_1g-quic-draft-29 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 && \ git clone --depth 1 https://github.com/ngtcp2/nghttp3 && \ cd nghttp3 && autoreconf -i && \