From a2b239fccdf08af833f4c94615db7d5100bcc74b Mon Sep 17 00:00:00 2001 From: Mike Nolan Date: Fri, 19 Jun 2026 21:45:29 -0500 Subject: [PATCH] Fix ppc --- containers/linux-ppc/Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/containers/linux-ppc/Dockerfile b/containers/linux-ppc/Dockerfile index 8577249..c23cb9b 100644 --- a/containers/linux-ppc/Dockerfile +++ b/containers/linux-ppc/Dockerfile @@ -1,8 +1,9 @@ -FROM docker.gitea.com/runner-images:ubuntu-24.04 +FROM archlinux:latest -ENV DEBIAN_FRONTEND=noninteractive -RUN apt-get -y update && apt-get -y install wget curl cmake ninja-build make tar gzip makepkg +RUN pacman --noconfirm -Syu && pacman --noconfirm -Sy wget sudo arch-install-scripts git cmake make mbedtls ncurses rsync bison flex git gperf help2man lzip python unzip base-devel nodejs npm +RUN useradd -m build && \ + echo "build ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/build WORKDIR /root