Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkg/cli/internal/frameworks/python/templates/Dockerfile.tmpl
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
Loading