From 4f80f973e67c5a364107b89d094ae35c53716b4c Mon Sep 17 00:00:00 2001 From: innovaker <66737976+innovaker@users.noreply.github.com> Date: Thu, 6 May 2021 11:42:58 +0100 Subject: [PATCH] fix(dev): bump curl (to buster-backports) Workaround for a dependency conflict ... #7 3.632 The following packages have unmet dependencies: #7 3.692 curl : Depends: libcurl4 (= 7.64.0-4+deb10u2) but 7.74.0-1.2~bpo10+1 is to be installed #7 3.703 E: Unable to correct problems, you have held broken packages. This should be reverted once `cmake` no longer comes from buster-backports. PR: #13 See: 5de32f5d1803fc0f86b9fccdc268cc1d10a4b3ff --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eea5487..062e0b3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,7 +46,7 @@ ENV LC_ALL=C RUN \ apt-get -y update \ - && apt-get -y install --no-install-recommends \ + && apt-get -y -t buster-backports install --no-install-recommends \ curl \ && curl -sL https://deb.nodesource.com/setup_14.x | bash - \ && apt-get -y update \