From e94d75dc47c8520eeb3da0c8622f921fb5edcba3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Apr 2026 07:05:34 +0000 Subject: [PATCH] chore(deps): bump python in /backend Bumps python from 3.13-slim-trixie to 3.14-slim-trixie. --- updated-dependencies: - dependency-name: python dependency-version: 3.14-slim-trixie dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- backend/Dockerfile.lite | 4 ++-- backend/Dockerfile.prod | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/backend/Dockerfile.lite b/backend/Dockerfile.lite index 7e12761f..0ab9676d 100644 --- a/backend/Dockerfile.lite +++ b/backend/Dockerfile.lite @@ -7,7 +7,7 @@ # ----------------------------------------------------------------------------- # Stage 1: Build Stage - Install Python dependencies with compilation # ----------------------------------------------------------------------------- -FROM python:3.13-slim-trixie AS builder +FROM python:3.14-slim-trixie AS builder WORKDIR /build @@ -31,7 +31,7 @@ RUN pip install --user --no-cache-dir --no-warn-script-location -r requirements- # ----------------------------------------------------------------------------- # Stage 2: Runtime Stage - Minimal production image with non-root user # ----------------------------------------------------------------------------- -FROM python:3.13-slim-trixie +FROM python:3.14-slim-trixie # OCI annotations for container metadata and compliance LABEL org.opencontainers.image.title="OpenTranscribe Backend Lite" \ diff --git a/backend/Dockerfile.prod b/backend/Dockerfile.prod index ba8a8be4..a8b07c95 100644 --- a/backend/Dockerfile.prod +++ b/backend/Dockerfile.prod @@ -12,7 +12,7 @@ FROM denoland/deno:bin AS deno-bin # ----------------------------------------------------------------------------- # Stage 1: Build Stage - Install Python dependencies with compilation # ----------------------------------------------------------------------------- -FROM python:3.13-slim-trixie AS builder +FROM python:3.14-slim-trixie AS builder WORKDIR /build @@ -46,7 +46,7 @@ RUN pip install --user --no-cache-dir --no-warn-script-location --no-deps whispe # ----------------------------------------------------------------------------- # Stage 2: Runtime Stage - Minimal production image with non-root user # ----------------------------------------------------------------------------- -FROM python:3.13-slim-trixie +FROM python:3.14-slim-trixie # OCI annotations for container metadata and compliance LABEL org.opencontainers.image.title="OpenTranscribe Backend" \