From bb5f2d2e3e42c852ec229f37be5c128e85e1c186 Mon Sep 17 00:00:00 2001 From: Melissa Avery-Weir Date: Fri, 19 Dec 2025 00:46:28 -0500 Subject: [PATCH] D'oh. Pull debian Prince instead of ubuntu --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c905564..16892c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,10 +3,10 @@ FROM jenkins/inbound-agent:latest-trixie-jdk17 AS jnlp # USER jenkins USER root RUN apt-get update && \ - apt-get -y install ca-certificates curl libjpeg-turbo pkg-config python3.13 python3.13-venv python3-dev python3-pip \ - python3-setuptools && \ + apt-get -y install ca-certificates curl pkg-config python3-dev python3-pip \ + python3-setuptools python3.13 python3.13-venv && \ apt -y install gdebi && \ - curl -O https://www.princexml.com/download/prince_16.1-1_ubuntu24.04_amd64.deb && \ + curl -O https://www.princexml.com/download/prince_20251030-1_debian13_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/*