From 24107da76d5dc9286acc643b8ba64eee4e23e7c4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 8 Oct 2025 05:09:51 +0000 Subject: [PATCH] Update python Docker tag to v3.14 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7041041..3545d3b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13-slim AS builder +FROM python:3.14-slim AS builder # Install system dependencies required for Cartopy and other packages RUN apt-get update && apt-get install -y \ @@ -39,7 +39,7 @@ RUN --mount=type=cache,target=/home/app/.cache/uv,uid=1000,gid=1000 \ # Pre-download Cartopy map data to avoid runtime downloads RUN /app/.venv/bin/python download_cartopy_data.py -FROM python:3.13-slim AS runner +FROM python:3.14-slim AS runner # Install runtime dependencies for Cartopy RUN apt-get update && apt-get install -y \