archlinux-act/Dockerfile
Edgar P. Burkhart 5b1d443c32
All checks were successful
Push Docker image / build (push) Successful in 3m47s
Fix Dockerfile to ensure sudoers configuration is applied correctly
2025-05-05 18:59:37 +02:00

10 lines
192 B
Docker

FROM archlinux:base-devel
RUN pacman -Syu --needed --noconfirm nodejs git
RUN echo "build ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
RUN useradd -d /build -m build
USER build
WORKDIR /build