From e5601979da009db40f3a38bd2b0018e487590c5e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Oto=20=C5=A0=C5=A5=C3=A1va?= Date: Tue, 22 Aug 2023 14:47:23 +0200 Subject: [PATCH] ci/images/manager: ensure usage of Python 3.7 --- ci/images/manager/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.47.2