From ac893b122989cb79d6afbf3956b5aed92aeee49e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 21 Feb 2026 03:12:39 +0000 Subject: [PATCH] chore(deps): Bump python from 3.11-slim to 3.14-slim Bumps python from 3.11-slim to 3.14-slim. --- updated-dependencies: - dependency-name: python dependency-version: 3.14-slim dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ed8823c..6f313ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # ============================================================================ # GraphMind API � Multi-stage Docker build # ============================================================================ -FROM python:3.11-slim AS builder +FROM python:3.14-slim AS builder WORKDIR /build @@ -19,7 +19,7 @@ COPY src/ src/ RUN uv pip install --no-cache --system --prefix=/install . # --------------------------------------------------------------------------- -FROM python:3.11-slim AS runtime +FROM python:3.14-slim AS runtime # Non-root user RUN groupadd -r graphmind && useradd -r -g graphmind -d /app graphmind