Downgrade libcurl to avoid HTTP bug
This commit is contained in:
parent
b8c2e1a03d
commit
71f1bce7bd
|
|
@ -58,8 +58,15 @@ RUN apt-get -y install --no-install-recommends \
|
||||||
coreutils \
|
coreutils \
|
||||||
socat \
|
socat \
|
||||||
openssh-client
|
openssh-client
|
||||||
|
# We want a newer git than the norm.
|
||||||
RUN apt-get -y -t buster-backports install --no-install-recommends \
|
RUN apt-get -y -t buster-backports install --no-install-recommends \
|
||||||
git
|
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/*
|
RUN rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# By default we will run as this user...
|
# By default we will run as this user...
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue