From f54e791bb7b8a7ffdeee2804c34a2b04bd983357 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Fri, 21 Oct 2022 14:15:25 -0300 Subject: [PATCH] [CI/CD][Fixed] dev images creation - The docker files were using master instead of dev branch --- tools/dev_image/Dockerfile | 6 +++--- tools/dev_image_k6/Dockerfile | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/dev_image/Dockerfile b/tools/dev_image/Dockerfile index eff2ccf0..2c2d9b99 100644 --- a/tools/dev_image/Dockerfile +++ b/tools/dev_image/Dockerfile @@ -5,10 +5,10 @@ LABEL Description="KiCad 5 with KiBot and other automation scripts" RUN dpkg --remove kicost kibot && \ apt-get update && \ apt-get -y install --no-install-recommends python3-pip unzip curl python3-setuptools python3-wheel && \ - curl https://codeload.github.com/INTI-CMNB/KiBot/zip/refs/heads/master --output pp.zip && \ + curl https://codeload.github.com/INTI-CMNB/KiBot/zip/refs/heads/dev --output pp.zip && \ unzip pp.zip && \ - pip3 install --no-compile KiBot-master/ && \ - rm -rf KiBot-master pp.zip && \ + pip3 install --no-compile KiBot-dev/ && \ + rm -rf KiBot-dev pp.zip && \ curl https://codeload.github.com/hildogjr/KiCost/zip/refs/heads/master --output pp.zip && \ unzip pp.zip && \ pip3 install KiCost-master/ && \ diff --git a/tools/dev_image_k6/Dockerfile b/tools/dev_image_k6/Dockerfile index 0bcea96f..5298d828 100644 --- a/tools/dev_image_k6/Dockerfile +++ b/tools/dev_image_k6/Dockerfile @@ -5,10 +5,10 @@ LABEL Description="KiCad 6 with KiBot and other automation scripts" RUN dpkg --remove kicost kibot && \ apt-get update && \ apt-get -y install --no-install-recommends -t bullseye-backports python3-pip unzip curl python3-setuptools python3-wheel && \ - curl https://codeload.github.com/INTI-CMNB/KiBot/zip/refs/heads/master --output pp.zip && \ + curl https://codeload.github.com/INTI-CMNB/KiBot/zip/refs/heads/dev --output pp.zip && \ unzip pp.zip && \ - pip3 install --no-compile KiBot-master/ && \ - rm -rf KiBot-master pp.zip && \ + pip3 install --no-compile KiBot-dev/ && \ + rm -rf KiBot-dev pp.zip && \ curl https://codeload.github.com/hildogjr/KiCost/zip/refs/heads/master --output pp.zip && \ unzip pp.zip && \ pip3 install KiCost-master/ && \