From 0d872ed0298af4ae58f2adbb488c9f83a3c06dc9 Mon Sep 17 00:00:00 2001 From: armistace Date: Wed, 20 May 2026 12:20:58 +1000 Subject: [PATCH] Upate Docker file to use latest trixie updates The lack of trixie updates was causing trivvy to have a heart failure Signed-off-by: armistace --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9d659a7..8a69fc1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.12-slim AS builder # Install system dependencies -RUN apt-get update && apt-get install -y \ +RUN apt-get update && apt-get upgrade -y && apt-get install -y \ git \ curl \ && rm -rf /var/lib/apt/lists/* @@ -25,7 +25,7 @@ RUN uv pip install --python /opt/venv/bin/python . FROM python:3.12-slim # Install system dependencies needed at runtime -RUN apt-get update && apt-get install -y \ +RUN apt-get update && apt-get upgrade -y && apt-get install -y \ git \ && rm -rf /var/lib/apt/lists/*