From 941a060437351364cff6c32867aa65477693fec5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 May 2026 20:18:45 +0000 Subject: [PATCH] chore(docker): bump python from 3.10-slim to 3.14-slim Bumps python from 3.10-slim to 3.14-slim. --- updated-dependencies: - dependency-name: python dependency-version: 3.14-slim dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d9fcbbd..a2178d2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ # --------------------------------------------------------- # Build Stage # --------------------------------------------------------- -FROM python:3.10-slim AS builder +FROM python:3.14-slim AS builder # Set working directory WORKDIR /app @@ -37,7 +37,7 @@ RUN hatch build # --------------------------------------------------------- # Runtime Stage # --------------------------------------------------------- -FROM python:3.10-slim +FROM python:3.14-slim # OCI Standard Labels LABEL org.opencontainers.image.title="template-python"