From 54df4d5acce9f1551c6fd870b1f81ea7519edff9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 08:58:18 +0000 Subject: [PATCH] chore(deps): bump python in /Resources/docker/app Bumps python from 3.13.7-alpine to 3.14.3-alpine. --- updated-dependencies: - dependency-name: python dependency-version: 3.14.3-alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Resources/docker/app/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/docker/app/Dockerfile b/Resources/docker/app/Dockerfile index 01abbd227..84be534b0 100644 --- a/Resources/docker/app/Dockerfile +++ b/Resources/docker/app/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13.7-alpine AS builder +FROM python:3.14.3-alpine AS builder ENV PYTHONUNBUFFERED=1 @@ -11,7 +11,7 @@ RUN apk add --no-cache --virtual .build-deps gcc g++ musl-dev \ postgresql-dev binutils rust cargo && \ python3 -m pip install -r requirements.txt --no-cache-dir -FROM python:3.13.7-alpine +FROM python:3.14.3-alpine # git is a dependency for the meta endpoint RUN apk add --no-cache git