From: Oto Šťáva Date: Tue, 22 Aug 2023 12:47:23 +0000 (+0200) Subject: ci/images/manager: ensure usage of Python 3.7 X-Git-Tag: v6.0.2~2^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e5601979da009db40f3a38bd2b0018e487590c5e;p=thirdparty%2Fknot-resolver.git ci/images/manager: ensure usage of Python 3.7 --- diff --git a/ci/images/manager/Dockerfile b/ci/images/manager/Dockerfile index 519c824ea..fa0dc30a5 100644 --- a/ci/images/manager/Dockerfile +++ b/ci/images/manager/Dockerfile @@ -13,8 +13,8 @@ RUN dnf install -y python3.7 python3.8 python3.9 python3.10 python3.10-devel pyt && dnf clean all # Install pip -RUN python3 -m pip install -U pip\ +RUN python3.7 -m ensurepip\ # Install poetry && curl -sSL https://install.python-poetry.org | python3 - --version 1.4.2\ # not exactly required, but helpful - && python3 -m pip install poethepoet + && python3.7 -m pip install poethepoet