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
8 lines
276 B
Docker
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" ]
|