From 9916bc71a7d3da0f8da9a3af23f5764c2e751589 Mon Sep 17 00:00:00 2001 From: "Sean T. Allen" Date: Wed, 4 Dec 2024 03:41:55 +0000 Subject: [PATCH] Update to fix coming build error We updated our Alpine based builder to use 3.20. In the process, pip installs will fail when run as root unless we supply `--break-system-packages`. --- x86-64-unknown-linux-builder/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x86-64-unknown-linux-builder/Dockerfile b/x86-64-unknown-linux-builder/Dockerfile index fa5bbec..819f72a 100644 --- a/x86-64-unknown-linux-builder/Dockerfile +++ b/x86-64-unknown-linux-builder/Dockerfile @@ -9,6 +9,6 @@ RUN apk add --update --no-cache \ bash \ make \ build-base \ - && pip install cloudsmith-cli + && pip install --break-system-packages cloudsmith-cli RUN git config --global --add safe.directory '*'