From a0421d3eb4da0e38179b71f48ef2200ac841719d Mon Sep 17 00:00:00 2001 From: Andrew Gunnerson Date: Wed, 28 Jun 2023 18:59:21 -0400 Subject: [PATCH] tests: Containerfile.arch: Allow system-wide pip installation Signed-off-by: Andrew Gunnerson --- tests/distros/Containerfile.arch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/distros/Containerfile.arch b/tests/distros/Containerfile.arch index ac99d37..9a8d7ea 100644 --- a/tests/distros/Containerfile.arch +++ b/tests/distros/Containerfile.arch @@ -3,4 +3,4 @@ FROM docker.io/archlinux/archlinux:latest RUN pacman --noconfirm -Syu --needed openssl python-lz4 python-pip python-protobuf \ && yes | pacman -Scc # Arch does not have strictyaml in its repos -RUN pip install strictyaml +RUN pip install --break-system-packages strictyaml