From cd6a12b902f46035549431cea072ff6fcbaf989c Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Tue, 9 Dec 2025 05:48:57 +0000 Subject: [PATCH] fix: services/arms/judge/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-13174602 - https://snyk.io/vuln/SNYK-DEBIAN13-OPENSSL-13174605 --- services/arms/judge/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/arms/judge/Dockerfile b/services/arms/judge/Dockerfile index 8fb3c6e..02a9f36 100644 --- a/services/arms/judge/Dockerfile +++ b/services/arms/judge/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 # Judge Arm Dockerfile - Multi-stage build for Python service -FROM python:3.13.7-slim as builder +FROM python:3.14.1-slim as builder # Install system dependencies RUN apt-get update && apt-get install -y \ @@ -23,7 +23,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.1-slim # Install runtime dependencies RUN apt-get update && apt-get install -y \