From 728d8c6b93dbed0a42f05a9240904399217b44ec Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Fri, 12 Feb 2021 19:41:57 -0300 Subject: [PATCH] Added imagemagick for PCBDraw --- Dockerfile | 1 + Dockerfile-nightly | 1 + 2 files changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 53dc1d6..176f7d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,7 @@ LABEL Description="KiCad with KiBot and other automation scripts" RUN sed -i -e's/ main/ main contrib non-free/g' /etc/apt/sources.list && \ apt-get update && \ apt-get -y install make wget curl rar bzip2 librsvg2-bin && \ + apt-get -y install --no-install-recommends imagemagick && \ curl -s https://api.github.com/repos/INTI-CMNB/KiAuto/releases/latest | grep "browser_download_url.*deb" | cut -d : -f 2,3 | tr -d \" | wget -i - && \ curl -s https://api.github.com/repos/INTI-CMNB/KiBoM/releases/latest | grep "browser_download_url.*deb" | cut -d : -f 2,3 | tr -d \" | wget -i - && \ curl -s https://api.github.com/repos/INTI-CMNB/InteractiveHtmlBom/releases/latest | grep "browser_download_url.*deb" | cut -d : -f 2,3 | tr -d \" | wget -i - && \ diff --git a/Dockerfile-nightly b/Dockerfile-nightly index 6740648..253c43d 100644 --- a/Dockerfile-nightly +++ b/Dockerfile-nightly @@ -5,6 +5,7 @@ LABEL Description="KiCad with KiBot and other automation scripts" RUN sed -i -e's/ main/ main contrib non-free/g' /etc/apt/sources.list && \ apt-get update && \ apt-get -y install make wget curl rar bzip2 librsvg2-bin && \ + apt-get -y install --no-install-recommends imagemagick && \ wget https://launchpad.net/~kicad/+archive/ubuntu/kicad-5.1-releases/+files/kicad_5.1.9-202012230806+73d0e3b20d~88~ubuntu20.10.1_amd64.deb && \ apt-get -y install liboce-foundation11 liboce-modeling11 liboce-ocaf-lite11 liboce-ocaf11 liboce-visualization11 libgl2ps1.4 && \ dpkg -i /kicad_5.1.*.deb && \