From 8e364e774e63d0616514e60d10e32bbf8c225ccf Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 13 Aug 2026 00:13:48 +0000 Subject: [PATCH] chore(deps): update python docker tag to v3.14.7 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 24fd29c..a6b60e9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11.7-bookworm as builder +FROM python:3.14.7-bookworm as builder WORKDIR /tmp @@ -13,7 +13,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \ pip3 install poetry && \ poetry install --no-ansi --no-interaction --no-root -FROM python:3.11.7-slim-bookworm as runtime +FROM python:3.14.7-slim-bookworm as runtime WORKDIR /app