From f73b616a61eaae89d7f9e481282d33c665978113 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Oct 2025 10:34:19 +0000 Subject: [PATCH] docker(deps): bump python from 3.13-slim to 3.14-slim Bumps python from 3.13-slim to 3.14-slim. --- updated-dependencies: - dependency-name: python dependency-version: 3.14-slim dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a4c02a7..ae9f0dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Multi-stage build for production-ready MCP as a Judge server -FROM python:3.13-slim AS builder +FROM python:3.14-slim AS builder # Set build arguments ARG VERSION=latest @@ -33,7 +33,7 @@ RUN .venv/bin/pip install uv RUN .venv/bin/uv pip install -e . # Production stage -FROM python:3.13-slim AS production +FROM python:3.14-slim AS production # Set build arguments ARG VERSION=latest