From b47306a0c8c5ec360118c5a0d2a6cc3b87c371e7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Jan 2026 16:59:28 +0000 Subject: [PATCH] fix(docker)(deps): bump python from 3.13-alpine to 3.14-alpine Bumps python from 3.13-alpine to 3.14-alpine. --- updated-dependencies: - dependency-name: python dependency-version: 3.14-alpine dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7dab060..d21025a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ # ─────────────────────────────────────────────────────────────────────────────── # Build Stage - Install Dependencies # ─────────────────────────────────────────────────────────────────────────────── -FROM python:3.13-alpine AS builder +FROM python:3.14-alpine AS builder RUN apk add --no-cache \ gcc \ @@ -30,7 +30,7 @@ RUN pip install --no-cache-dir --prefix=/install -r requirements.txt # ─────────────────────────────────────────────────────────────────────────────── # Test Stage - Run Tests During Build # ─────────────────────────────────────────────────────────────────────────────── -FROM python:3.13-alpine AS test +FROM python:3.14-alpine AS test # Build dependencies for test packages RUN apk add --no-cache \ @@ -59,7 +59,7 @@ RUN env -i HOME="$HOME" PATH="$PATH" PYTHONDONTWRITEBYTECODE=1 \ # ─────────────────────────────────────────────────────────────────────────────── # Production Stage - Minimal Runtime Image # ─────────────────────────────────────────────────────────────────────────────── -FROM python:3.13-alpine AS prod +FROM python:3.14-alpine AS prod # ============================================================================= # Custom Labels