From 6cc2ddd80d2961be641336349a962f4b19b3a15a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 28 Aug 2025 22:55:44 +0000 Subject: [PATCH] docker(deps): Bump python from 3.12-slim to 3.13-slim Bumps python from 3.12-slim to 3.13-slim. --- updated-dependencies: - dependency-name: python dependency-version: 3.13-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 32be7ba..c2f5d8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Multi-stage build for production-ready MCP as a Judge server -FROM python:3.12-slim AS builder +FROM python:3.13-slim AS builder # Set build arguments ARG PORT=8050 @@ -34,7 +34,7 @@ RUN .venv/bin/pip install uv RUN .venv/bin/uv pip install -e . # Production stage -FROM python:3.12-slim AS production +FROM python:3.13-slim AS production # Set build arguments ARG PORT=8050