From 6b01903cb81bcb7e39056b29b56b9e80dce9e27a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 16:09:09 +0000 Subject: [PATCH] Bump python from 3.13.7-alpine3.22 to 3.14.2-alpine3.22 Bumps python from 3.13.7-alpine3.22 to 3.14.2-alpine3.22. --- updated-dependencies: - dependency-name: python dependency-version: 3.14.2-alpine3.22 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 44ee989..17fc56c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13.7-alpine3.22 +FROM python:3.14.2-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.13.7-alpine3.22 +FROM python:3.14.2-alpine3.22 ENV PYTHONUNBUFFERED=1 COPY --from=0 /root-dir / RUN set -eux && \