All checks were successful
Test / lint (pull_request) Successful in 3s
Test / python3_9 (pull_request) Successful in 36s
Test / python3_10 (pull_request) Successful in 37s
Test / python3_11 (pull_request) Successful in 34s
Test / python3_12 (pull_request) Successful in 43s
Test / python3_13 (pull_request) Successful in 38s
Build and publish / lint (push) Successful in 3s
Build and publish / python3_9 (push) Successful in 53s
Build and publish / python3_10 (push) Successful in 49s
Build and publish / python3_11 (push) Successful in 52s
Build and publish / python3_12 (push) Successful in 51s
Build and publish / python3_13 (push) Successful in 49s
8 lines
276 B
Docker
8 lines
276 B
Docker
FROM python:3.13.2-slim-bookworm@sha256:ae9f9ac89467077ed1efefb6d9042132d28134ba201b2820227d46c9effd3174
|
|
|
|
# renovate: datasource=pypi depName=poetry versioning=semver
|
|
ENV POETRY_VERSION 2.1.1
|
|
|
|
RUN set -ex; pip install --no-cache-dir poetry==$POETRY_VERSION;
|
|
|
|
CMD [ "poetry" ]
|