From f7ef98e71a27fac82235a3d12be5a6013b60b7d2 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Wed, 10 Dec 2025 10:20:14 +0000 Subject: [PATCH] fix: services/orchestrator/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN13-OPENSSL-13174592 - https://snyk.io/vuln/SNYK-DEBIAN13-OPENSSL-13174592 - https://snyk.io/vuln/SNYK-DEBIAN13-OPENSSL-13174602 - https://snyk.io/vuln/SNYK-DEBIAN13-OPENSSL-13174605 - https://snyk.io/vuln/SNYK-DEBIAN13-OPENSSL-13174605 --- services/orchestrator/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/orchestrator/Dockerfile b/services/orchestrator/Dockerfile index abef415..e729f83 100644 --- a/services/orchestrator/Dockerfile +++ b/services/orchestrator/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 # Orchestrator Service Dockerfile - Multi-stage build for production -FROM python:3.13.7-slim as builder +FROM python:3.14.2-slim as builder # Install system dependencies for building RUN apt-get update && apt-get install -y \ @@ -24,7 +24,7 @@ RUN poetry config virtualenvs.create false && \ poetry install --only main --no-interaction --no-ansi # Runtime stage -FROM python:3.13.7-slim +FROM python:3.14.2-slim # Install runtime dependencies RUN apt-get update && apt-get install -y \