From 39ee6f58d41624021236607ef33de2ae68f2b2d6 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Tue, 5 Oct 2021 09:10:53 -0300 Subject: [PATCH] Added missing git command to the dev dockerfile --- tools/dev_image/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/dev_image/Dockerfile b/tools/dev_image/Dockerfile index 6f1d4108..be9a85c2 100644 --- a/tools/dev_image/Dockerfile +++ b/tools/dev_image/Dockerfile @@ -4,7 +4,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 -t buster-backports make wget curl rar bzip2 librsvg2-bin python3-pip && \ + apt-get -y install -t buster-backports make wget curl rar bzip2 librsvg2-bin python3-pip git && \ 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 - && \ @@ -13,7 +13,7 @@ RUN sed -i -e's/ main/ main contrib non-free/g' /etc/apt/sources.list && \ curl -s https://api.github.com/repos/INTI-CMNB/KiCost/releases/latest | grep "browser_download_url.*deb" | cut -d : -f 2,3 | tr -d \" | wget -i - && \ apt -y install --no-install-recommends ./*.deb && \ pip3 install git+https://github.com/INTI-CMNB/KiBot.git && \ - apt-get -y remove curl wget python3-pip && \ + apt-get -y remove curl wget python3-pip git && \ apt-get -y autoremove && \ rm /*.deb && \ rm -rf /var/lib/apt/lists/*