From e07b9ee2abdd65094b4b7b5d221915e3b97a4e9c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 11 Feb 2026 11:33:31 +0000 Subject: [PATCH] Update python Docker tag to v3.14 --- .python-version | 2 +- Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.python-version b/.python-version index 24ee5b1..6324d40 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.13 +3.14 diff --git a/Dockerfile b/Dockerfile index 091bdaf..31eb721 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ # ============================================================================= # Stage 1: Builder - Install dependencies and build package # ============================================================================= -FROM python:3.13-slim AS builder +FROM python:3.14-slim AS builder # Set environment variables ENV PYTHONDONTWRITEBYTECODE=1 \ @@ -39,7 +39,7 @@ RUN sed -i "s|__version__ = \"dev\"|__version__ = \"${BUILD_VERSION}\"|" src/mes # ============================================================================= # Stage 2: Runtime - Final production image # ============================================================================= -FROM python:3.13-slim AS runtime +FROM python:3.14-slim AS runtime # Labels LABEL org.opencontainers.image.title="MeshCore Hub" \