From 6c722240858a2d8d9c3b3c8b6011401bac3e10f3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 16:23:16 +0000 Subject: [PATCH] Bump python from 3.14.3-alpine3.22 to 3.14.5-alpine3.22 Bumps python from 3.14.3-alpine3.22 to 3.14.5-alpine3.22. --- updated-dependencies: - dependency-name: python dependency-version: 3.14.5-alpine3.22 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 323e399..6ba27f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.14.3-alpine3.22 +FROM python:3.14.5-alpine3.22 COPY requirements.txt /tmp RUN set -eux && \ apk add --no-cache --upgrade \ @@ -12,7 +12,7 @@ RUN set -eux && \ \) -exec rm -rf '{}' + COPY root /root-dir -FROM python:3.14.3-alpine3.22 +FROM python:3.14.5-alpine3.22 ENV PYTHONUNBUFFERED=1 COPY --from=0 /root-dir / RUN set -eux && \