From 20d1f60765ceb80dd30e74a0aec7ae54d2bfc67f Mon Sep 17 00:00:00 2001 From: Tom Scogland Date: Tue, 20 Aug 2024 14:21:30 -0700 Subject: [PATCH] alpine: use root to avoid nosuid issue in ci problem: just like with el9 and noble, alpine requires user to be set to root in the dockerfile here to build right under qemu-user-static in CI solution: add the user root line where required --- src/test/docker/alpine/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/docker/alpine/Dockerfile b/src/test/docker/alpine/Dockerfile index 59bb559ac..257d5d24f 100644 --- a/src/test/docker/alpine/Dockerfile +++ b/src/test/docker/alpine/Dockerfile @@ -2,6 +2,7 @@ FROM fluxrm/flux-core:alpine ARG USER=flux ARG UID=1000 +USER root # Install extra buildrequires for flux-sched: RUN sudo apk add \