From 2736e8e5270a1c52a304740b9d25773792faafe2 Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Mon, 5 Feb 2024 13:32:19 -0700 Subject: [PATCH] CI: Fix building of alpine image with regards to python packages --- ci/alpine/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/alpine/Dockerfile b/ci/alpine/Dockerfile index 76aa75eeab..0c6c2153ca 100644 --- a/ci/alpine/Dockerfile +++ b/ci/alpine/Dockerfile @@ -23,9 +23,10 @@ RUN apk add --no-cache \ openssl-dev \ procps \ py3-pip \ + py3-websockets \ python3 \ python3-dev \ swig \ zlib-dev -RUN pip3 install websockets junit2html +RUN pip3 install --break-system-packages junit2html