From 4b0f7a29de46a09b567ff32fe735913dd3ca443e Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Mon, 4 Apr 2022 12:59:36 -0300 Subject: [PATCH] Added missing poppler-utils to the `dev` images. Closes #175 --- tools/dev_image/Dockerfile | 2 +- tools/dev_image_k6/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/dev_image/Dockerfile b/tools/dev_image/Dockerfile index f57f84d2..a8eece44 100644 --- a/tools/dev_image/Dockerfile +++ b/tools/dev_image/Dockerfile @@ -9,7 +9,7 @@ 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 && \ 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 poppler-utils && \ apt-get -y install --no-install-recommends python3-bs4 python3-lxml python3-tqdm && \ 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 - && \ diff --git a/tools/dev_image_k6/Dockerfile b/tools/dev_image_k6/Dockerfile index 6d97b636..acd0aa84 100644 --- a/tools/dev_image_k6/Dockerfile +++ b/tools/dev_image_k6/Dockerfile @@ -7,7 +7,7 @@ RUN sed -i -e's/ main/ main contrib non-free/g' /etc/apt/sources.list && \ 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 --no-install-recommends imagemagick python3-qrcodegen git && \ + apt-get -y install --no-install-recommends imagemagick python3-qrcodegen git poppler-utils && \ apt-get -y install --no-install-recommends python3-bs4 python3-lxml python3-tqdm python3-validators && \ 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 - && \