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