From 37ae18826efb18fa31285720fa97faa3930479f6 Mon Sep 17 00:00:00 2001 From: Omar Siam Date: Thu, 18 Jan 2024 21:14:35 +0100 Subject: [PATCH] Feature: Add the python3-pip package This should ease installing more python packages as needed. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2608f1e..8993b05 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ RUN apt-get update && \ wget -O - https://packages.adoptium.net/artifactory/api/gpg/key/public | tee /etc/apt/keyrings/adoptium.asc && \ echo "deb [signed-by=/etc/apt/keyrings/adoptium.asc] https://packages.adoptium.net/artifactory/deb $(awk -F= '/^VERSION_CODENAME/{print$2}' /etc/os-release) main" | tee /etc/apt/sources.list.d/adoptium.list # install packages -RUN apt-get update && apt-get install -y --no-install-recommends apt-utils temurin-${JAVA_VERSION}-jdk curl unzip git libc6 aptitude libaom-dev gdebi fonts-stix && \ +RUN apt-get update && apt-get install -y --no-install-recommends apt-utils python3-pip temurin-${JAVA_VERSION}-jdk curl unzip git libc6 aptitude libaom-dev gdebi fonts-stix && \ # install prince curl --proto '=https' --tlsv1.2 -O https://www.princexml.com/download/${DEB_FILE} && \ gdebi --non-interactive ./${DEB_FILE} && \