All checks were successful
Test / lint (pull_request) Successful in 4s
Test / python3_9 (pull_request) Successful in 36s
Test / python3_10 (pull_request) Successful in 33s
Test / python3_11 (pull_request) Successful in 35s
Test / python3_12 (pull_request) Successful in 31s
Test / python3_13 (pull_request) Successful in 32s
Build and publish / lint (push) Successful in 4s
Build and publish / python3_9 (push) Successful in 1m10s
Build and publish / python3_10 (push) Successful in 51s
Build and publish / python3_11 (push) Successful in 52s
Build and publish / python3_12 (push) Successful in 48s
Build and publish / python3_13 (push) Successful in 54s
8 lines
276 B
Docker
8 lines
276 B
Docker
FROM python:3.13.5-slim-bookworm@sha256:ed6fb16d5bb215f6884ea0462d12fae3f7557590cd27ca50c8e2ce00806ddf0c
|
|
|
|
# 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" ]
|