util/docker/jenkins-node: Allow pip to install packages system-wide

Call pip3 with `--break-system-packages` allowing it to install packages
system-wide. This fixes building the Docker container.

Change-Id: Id093f2c69fec43556c434fbca7b36095a7e6bd97
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/74292
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-by: Martin L Roth <gaumless@gmail.com>
This commit is contained in:
Felix Singer 2023-04-09 00:32:39 +02:00 committed by Felix Singer
parent 98d7157a6d
commit fa41fef557
1 changed files with 2 additions and 2 deletions

View File

@ -44,8 +44,8 @@ RUN apt-get -y update && \
python3-pyrsistent \
swig \
&& apt-get clean \
&& pip3 install --upgrade --no-cache-dir pip \
&& pip3 install --no-cache-dir \
&& pip3 install --upgrade --no-cache-dir --break-system-packages pip \
&& pip3 install --no-cache-dir --break-system-packages \
setuptools==58.2.0 \
jinja2==3.0.3 \
recommonmark===0.5.0 \