docker-python-poetry/3.11/Dockerfile
renovate-bot d94956da0d
Some checks reported errors
continuous-integration/drone/pr Build was killed
Update python Docker tag to v3.13.0
2024-11-13 04:21:02 +00:00

9 lines
276 B
Docker

FROM python:3.13.0-slim-bookworm@sha256:4efa69bf17cfbd83a9942e60e2642335c3b397448e00410063a0421f9727c4c4
# renovate: datasource=pypi depName=poetry versioning=semver
ENV POETRY_VERSION 1.8.4
RUN set -ex; pip install --no-cache-dir poetry==$POETRY_VERSION;
CMD [ "poetry" ]