🔒️(agents) upgrade OpenSSL to address CVE-2025-15467

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.
This commit is contained in:
lebaudantoine
2026-02-19 19:30:14 +01:00
committed by aleb_the_flash
parent 4fd4e074e0
commit f02fbc85a3

View File

@@ -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