docker-python-poetry/3.12/Dockerfile
renovate-bot 552edafba2
All checks were successful
Test / lint (pull_request) Successful in 3s
Test / python3_9 (pull_request) Successful in 32s
Test / python3_10 (pull_request) Successful in 32s
Test / python3_11 (pull_request) Successful in 31s
Test / python3_12 (pull_request) Successful in 32s
Test / python3_13 (pull_request) Successful in 36s
Update python Docker tag to v3.13.5
2025-06-13 03:22:05 +00:00

8 lines
276 B
Docker

FROM python:3.13.5-slim-bookworm@sha256:f2fdaec50160418e0c2867ba3e254755edd067171725886d5d303fd7057bbf81
# renovate: datasource=pypi depName=poetry versioning=semver
ENV POETRY_VERSION 2.1.3
RUN set -ex; pip install --no-cache-dir poetry==$POETRY_VERSION;
CMD [ "poetry" ]