From 80c9ba77675d22d55cb3d4da5c3e15720e1c667b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Jul 2026 08:08:18 +0000 Subject: [PATCH] build(deps): bump python from `b877e50` to `d3400aa` Bumps python from `b877e50` to `d3400aa`. --- 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 7c95220..f5bd51d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Builder: install dependencies from the committed lockfile (reproducible), # then hand only the finished virtualenv to the runtime stage. -FROM python:3.14-slim@sha256:b877e50bd90de10af8d82c57a022fc2e0dc731c5320d762a27986facfc3355c1 AS builder +FROM python:3.14-slim@sha256:d3400aa122fa42cf0af0dbe8ec3091b047eac5c8f7e3539f7135e86d855dc015 AS builder RUN pip install --no-cache-dir uv==0.9.18 @@ -12,7 +12,7 @@ COPY src ./src RUN uv sync --locked --no-dev --extra telemetry --no-editable # Runtime: same digest-pinned base, no build tooling, non-root. -FROM python:3.14-slim@sha256:b877e50bd90de10af8d82c57a022fc2e0dc731c5320d762a27986facfc3355c1 +FROM python:3.14-slim@sha256:d3400aa122fa42cf0af0dbe8ec3091b047eac5c8f7e3539f7135e86d855dc015 ENV PYTHONUNBUFFERED=1