From 45b166138a3451a0cf20456658330fe372e9e122 Mon Sep 17 00:00:00 2001 From: Melissa Avery-Weir Date: Fri, 19 Dec 2025 00:31:37 -0500 Subject: [PATCH] Aptitude doesn't exist by that name... --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 83225d3..334a8ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,9 +3,9 @@ FROM jenkins/inbound-agent:latest-trixie-jdk17 AS jnlp # USER jenkins USER root RUN apt-get update && \ - apt-get -y install ca-certificates curl pkg-config python3.13 python3-dev python3-pip \ - python3-setuptools python3.13-venv && \ - aptitude -y install gdebi && \ + apt-get -y install ca-certificates curl pkg-config python3.13 python3.13-venv python3-dev python3-pip \ + python3-setuptools && \ + apt -y install gdebi && \ curl -O https://www.princexml.com/download/prince_16.1-1_ubuntu24.04_amd64.deb && \ gdebi --n ./prince_16.1-1_ubuntu24.04_amd64.deb && \ apt-get clean && \