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 \