Added missing git command to the dev dockerfile
This commit is contained in:
parent
68da19e5e5
commit
39ee6f58d4
|
|
@ -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/*
|
||||
|
|
|
|||
Loading…
Reference in New Issue