diff --git a/pkg/cli/internal/frameworks/python/templates/Dockerfile.tmpl b/pkg/cli/internal/frameworks/python/templates/Dockerfile.tmpl index 6cf2c41..dfc2d07 100644 --- a/pkg/cli/internal/frameworks/python/templates/Dockerfile.tmpl +++ b/pkg/cli/internal/frameworks/python/templates/Dockerfile.tmpl @@ -1,5 +1,5 @@ # Multi-stage build for {{.ProjectName}} MCP server using uv -FROM python:3.11-slim as builder +FROM python:3.13.8-slim as builder # Install uv COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv @@ -26,7 +26,7 @@ COPY src/ ./src/ COPY kmcp.yaml ./ # Production stage -FROM python:3.11-slim +FROM python:3.13.8-slim # Install uv in production COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv