docker-python-poetry/3.10/Dockerfile
renovate-bot 051ac800cd
All checks were successful
Test / lint (pull_request) Successful in 3s
Test / python3_9 (pull_request) Successful in 46s
Test / python3_10 (pull_request) Successful in 32s
Test / python3_11 (pull_request) Successful in 41s
Test / python3_12 (pull_request) Successful in 33s
Test / python3_13 (pull_request) Successful in 34s
Update python Docker tag to v3.13.5
2025-07-23 23:47:36 +00:00

8 lines
276 B
Docker

FROM python:3.13.5-slim-bookworm@sha256:4c2cf9917bd1cbacc5e9b07320025bdb7cdf2df7b0ceaccb55e9dd7e30987419
# 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" ]