archlinux-act/Dockerfile

11 lines
192 B
Text
Raw Normal View History

2025-05-05 18:53:54 +02:00
FROM archlinux:base-devel
2025-05-05 18:53:54 +02:00
RUN pacman -Syu --needed --noconfirm nodejs git
RUN echo "build ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
2025-05-05 18:53:54 +02:00
RUN useradd -d /build -m build
USER build
WORKDIR /build