Update python Docker tag to v3.14
Some checks failed
Test, Build and Publish / test (pull_request) Failing after 37s
Test, Build and Publish / build-and-push-images (pull_request) Has been skipped

This commit is contained in:
Renovate Bot 2025-10-10 00:00:14 +00:00
parent 647c0266e1
commit 8156378de5

View file

@ -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