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