From 0c7477b31a8e01c35edf2278f931ba688da47cf9 Mon Sep 17 00:00:00 2001 From: Marius Alwan Meyer <22202402+Sporqist@users.noreply.github.com> Date: Fri, 21 Jul 2023 15:33:53 +0200 Subject: [PATCH] [CI] let pip3 break system packages --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2a6c467..c56e5c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,9 +24,9 @@ RUN \ python3-setuptools \ python3-wheel \ ssh \ - && pip3 install \ + && pip3 install --break-system-packages \ -r https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/v${ZEPHYR_VERSION}/scripts/requirements-base.txt \ - && pip3 install cmake \ + && pip3 install --break-system-packages cmake \ && apt-get remove -y --purge \ python3-dev \ python3-pip \ @@ -69,7 +69,7 @@ RUN \ tio \ wget \ xz-utils \ - && pip3 install \ + && pip3 install --break-system-packages \ -r https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/v${ZEPHYR_VERSION}/scripts/requirements-build-test.txt \ -r https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/v${ZEPHYR_VERSION}/scripts/requirements-run-test.txt \ && apt-get clean \