diff --git a/tools/dev_image/Dockerfile b/tools/dev_image/Dockerfile index da4978c5..3f51d991 100644 --- a/tools/dev_image/Dockerfile +++ b/tools/dev_image/Dockerfile @@ -2,7 +2,7 @@ FROM setsoft/kicad_auto:latest MAINTAINER Salvador E. Tropea LABEL Description="KiCad 5 with KiBot and other automation scripts" -RUN dpkg --remove kicost kibot && \ +RUN dpkg --remove kicost kibot kiauto && \ apt-get update && \ apt-get -y install --no-install-recommends -t buster-backports python3-pip unzip curl python3-setuptools python3-wheel && \ curl https://codeload.github.com/INTI-CMNB/KiBot/zip/refs/heads/master --output pp.zip && \ @@ -13,5 +13,9 @@ RUN dpkg --remove kicost kibot && \ unzip pp.zip && \ pip3 install KiCost-master/ && \ rm -rf KiCost-master pp.zip && \ + curl https://codeload.github.com/INTI-CMNB/KiAuto/zip/refs/heads/kicad_interposer --output pp.zip && \ + unzip pp.zip && \ + pip3 install KiAuto-kicad_interposer/ && \ + rm -rf KiAuto-kicad_interposer/ pp.zip && \ apt-get -y remove curl python3-pip unzip python3-setuptools python3-wheel && \ rm -rf /var/lib/apt/lists/* diff --git a/tools/dev_image_k6/Dockerfile b/tools/dev_image_k6/Dockerfile index cc5d200e..7847e4c0 100644 --- a/tools/dev_image_k6/Dockerfile +++ b/tools/dev_image_k6/Dockerfile @@ -2,7 +2,7 @@ FROM setsoft/kicad_auto:ki6 MAINTAINER Salvador E. Tropea LABEL Description="KiCad 6 with KiBot and other automation scripts" -RUN dpkg --remove kicost kibot && \ +RUN dpkg --remove kicost kibot kiauto && \ 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 && \ @@ -13,6 +13,10 @@ RUN dpkg --remove kicost kibot && \ unzip pp.zip && \ pip3 install KiCost-master/ && \ rm -rf KiCost-master pp.zip && \ + curl https://codeload.github.com/INTI-CMNB/KiAuto/zip/refs/heads/kicad_interposer --output pp.zip && \ + unzip pp.zip && \ + pip3 install KiAuto-kicad_interposer/ && \ + rm -rf KiAuto-kicad_interposer/ pp.zip && \ apt-get -y remove curl python3-pip unzip python3-setuptools python3-wheel && \ rm -rf /var/lib/apt/lists/*