From 4932118638923eac3456dcfd6eff49bd107b5dc4 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sat, 11 Oct 2025 08:27:25 +0000 Subject: [PATCH] fix: pkg/cli/internal/frameworks/python/templates/Dockerfile.tmpl to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN13-OPENSSL-13174592 - https://snyk.io/vuln/SNYK-DEBIAN13-OPENSSL-13174592 - https://snyk.io/vuln/SNYK-DEBIAN13-OPENSSL-13174602 - https://snyk.io/vuln/SNYK-DEBIAN13-OPENSSL-13174602 - https://snyk.io/vuln/SNYK-DEBIAN13-OPENSSL-13174605 --- pkg/cli/internal/frameworks/python/templates/Dockerfile.tmpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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