From a5fda9a8ee717d353507fa8dde652b12434e7eda Mon Sep 17 00:00:00 2001 From: jbravais Date: Thu, 23 Oct 2025 14:01:06 +0200 Subject: [PATCH] Upgrade to python 3.13 Upgrade base image to python:3.13-slim-trixie and download associated libOrthancPython.so. This allows to fix 2 CVE: https://access.redhat.com/security/cve/cve-2025-7458 https://access.redhat.com/security/cve/cve-2023-45853 --- orthanc-python/download-python.sh | 2 +- orthanc/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/orthanc-python/download-python.sh b/orthanc-python/download-python.sh index 1d818fe..ebc9897 100644 --- a/orthanc-python/download-python.sh +++ b/orthanc-python/download-python.sh @@ -6,6 +6,6 @@ cd URL=https://orthanc.uclouvain.be/downloads/linux-standard-base VERSION=mainline -wget ${URL}/orthanc-python/debian-bookworm-python-3.11/${VERSION}/libOrthancPython.so +wget ${URL}/orthanc-python/debian-trixie-python-3.13/${VERSION}/libOrthancPython.so mv ./libOrthancPython.so /usr/local/share/orthanc/plugins/ diff --git a/orthanc/Dockerfile b/orthanc/Dockerfile index 4166711..9c5b60b 100644 --- a/orthanc/Dockerfile +++ b/orthanc/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:bookworm-slim +FROM python:3.13-slim-trixie MAINTAINER Sebastien Jodogne LABEL Description="Orthanc, free DICOM server" Vendor="The Orthanc project"