From f02fbc85a3e6cb083d66ce8a012653cdc8053873 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Thu, 19 Feb 2026 19:30:14 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=92=EF=B8=8F(agents)=20upgrade=20OpenS?= =?UTF-8?q?SL=20to=20address=20CVE-2025-15467?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upgrade OpenSSL and related dependencies to address CVE-2025-15467 in meet-agents. This vulnerability was blocking the image signature workflow, as it is classified as a critical dependency. --- src/agents/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/agents/Dockerfile b/src/agents/Dockerfile index 50c29007..f6c3c652 100644 --- a/src/agents/Dockerfile +++ b/src/agents/Dockerfile @@ -4,6 +4,8 @@ FROM python:3.13-slim AS base RUN apt-get update && apt-get install -y \ libglib2.0-0 \ libgobject-2.0-0 \ + "openssl=3.5.4-1~deb13u2" \ + "libssl3t64=3.5.4-1~deb13u2" \ && rm -rf /var/lib/apt/lists/* FROM base AS builder