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