Adapted curl install for back-ports (ki6_dev image)

This commit is contained in:
Salvador E. Tropea 2022-03-08 13:19:29 -03:00
parent f78b0c1f78
commit 76af36faf8
1 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,8 @@ LABEL Description="KiCad with KiBot and other automation scripts"
RUN sed -i -e's/ main/ main contrib non-free/g' /etc/apt/sources.list && \ RUN sed -i -e's/ main/ main contrib non-free/g' /etc/apt/sources.list && \
apt-get update && \ apt-get update && \
apt-get -y install make wget curl rar bzip2 librsvg2-bin && \ apt-get -y install -t bullseye-backports curl && \
apt-get -y install make wget rar bzip2 librsvg2-bin && \
apt-get -y install python3-pip python3-distutils unzip && \ apt-get -y install python3-pip python3-distutils unzip && \
apt-get -y install --no-install-recommends imagemagick python3-qrcodegen git && \ apt-get -y install --no-install-recommends imagemagick python3-qrcodegen git && \
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/KiAuto/releases/latest | grep "browser_download_url.*deb" | cut -d : -f 2,3 | tr -d \" | wget -i - && \