From 586f71701629746d21e48ed2bc0b52d9272604aa Mon Sep 17 00:00:00 2001 From: Melissa Avery-Weir Date: Fri, 19 Dec 2025 00:28:12 -0500 Subject: [PATCH] Use gdebi for Prince so it will download its prereqs --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e9ad019..83225d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,10 +3,11 @@ FROM jenkins/inbound-agent:latest-trixie-jdk17 AS jnlp # USER jenkins USER root RUN apt-get update && \ - apt-get install -y ca-certificates curl gdebi libjpeg8 pkg-config python3.13 python3-dev python3-pip \ + apt-get -y install ca-certificates curl pkg-config python3.13 python3-dev python3-pip \ python3-setuptools python3.13-venv && \ + aptitude -y install gdebi && \ curl -O https://www.princexml.com/download/prince_16.1-1_ubuntu24.04_amd64.deb && \ - apt-get install -y ./prince_16.1-1_ubuntu24.04_amd64.deb && \ + gdebi --n ./prince_16.1-1_ubuntu24.04_amd64.deb && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*