All checks were successful
Test / lint (pull_request) Successful in 4s
Test / python3_9 (pull_request) Successful in 37s
Test / python3_10 (pull_request) Successful in 36s
Test / python3_11 (pull_request) Successful in 43s
Test / python3_12 (pull_request) Successful in 34s
Test / python3_13 (pull_request) Successful in 33s
Build and publish / lint (push) Successful in 4s
Build and publish / python3_9 (push) Successful in 54s
Build and publish / python3_10 (push) Successful in 52s
Build and publish / python3_11 (push) Successful in 49s
Build and publish / python3_12 (push) Successful in 50s
Build and publish / python3_13 (push) Successful in 49s
8 lines
277 B
Docker
8 lines
277 B
Docker
FROM python:3.11.11-slim-bookworm@sha256:42420f737ba91d509fc60d5ed65ed0492678a90c561e1fa08786ae8ba8b52eda
|
|
|
|
# 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" ]
|