From 1a80260428d33bfab8bf11058cdeded5c81a110b Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Fri, 25 Mar 2022 10:50:30 -0300 Subject: [PATCH] Changed to KiCad 5 action. --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2bb623dd..63c9b034 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,9 @@ -FROM setsoft/kicad_auto:dev_k6 +FROM setsoft/kicad_auto:dev LABEL AUTHOR Salvador E. Tropea LABEL Description="export various files from KiCad projects" RUN apt-get update && \ - apt-get -y install -t bullseye-backports curl && \ - apt-get -y install make wget && \ + 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 && \