Downgrade libcurl to avoid HTTP bug

This commit is contained in:
Tim Hockin 2021-05-27 10:17:38 -07:00
parent b8c2e1a03d
commit 71f1bce7bd
1 changed files with 7 additions and 0 deletions

View File

@ -58,8 +58,15 @@ RUN apt-get -y install --no-install-recommends \
coreutils \
socat \
openssh-client
# We want a newer git than the norm.
RUN apt-get -y -t buster-backports install --no-install-recommends \
git
# libcurl3-gnutls=7.74.0-1.2~bpo10+1 is broken. We can downgrade for now until
# the fix reaches upstream.
# https://github.com/kubernetes/git-sync/issues/395
RUN apt-get -y install --no-install-recommends --allow-downgrades \
libcurl3-gnutls:amd64=7.64.0-4+deb10u2
RUN apt-get -y autoremove
RUN rm -rf /var/lib/apt/lists/*
# By default we will run as this user...