From 8441ee048c9520845792310698d83cb47e8350df Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sat, 11 Apr 2026 13:42:58 +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-TAR-15962848 - https://snyk.io/vuln/SNYK-DEBIAN13-SYSTEMD-15656985 - https://snyk.io/vuln/SNYK-DEBIAN13-SYSTEMD-15656985 - https://snyk.io/vuln/SNYK-DEBIAN13-GLIBC-15754001 - https://snyk.io/vuln/SNYK-DEBIAN13-GLIBC-15754020 --- 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 1b3ba09..f8666a6 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.12-slim as builder +FROM python:3.14.4-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.12-slim +FROM python:3.14.4-slim # Install uv in production COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv