From 8156378de577ebc00b66584f1eb8ac68d0f2c228 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 10 Oct 2025 00:00:14 +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 1484132..c2fb143 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ # Split out the wheel build into the non-slim image # See https://github.com/docker-library/python/issues/869 -FROM python:3.12 AS build +FROM python:3.14 AS build COPY requirements.txt ./ RUN --mount=type=cache,target=/var/cache/buildkit/pip \ pip wheel --wheel-dir /wheels -r requirements.txt -FROM python:3.12-slim +FROM python:3.14-slim LABEL org.opencontainers.image.source=https://github.com/mdiluz/matchy LABEL org.opencontainers.image.description="Matchy matches matchees" LABEL org.opencontainers.image.licenses=Unlicense