From dffb7f5cfce69f36c1c584c0b1ac8400e97aea2d Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Tue, 4 May 2021 10:36:08 -0300 Subject: [PATCH] Fixed curl libs from backports --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9d829100..9db5ee4e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ LABEL AUTHOR Salvador E. Tropea LABEL Description="export various files from KiCad projects" RUN apt-get update && \ - apt-get -y install make wget curl && \ + apt-get -y install -t buster-backports make wget curl && \ curl -s https://api.github.com/repos/INTI-CMNB/kicad-git-filters/releases/latest | grep "browser_download_url.*deb" | cut -d : -f 2,3 | tr -d \" | wget -i - && \ apt -y install --no-install-recommends ./*.deb && \ apt-get -y remove curl wget && \