Files
DotFiles/docker/Dockerfile
T
2026-07-04 23:48:24 +02:00

9 lines
203 B
Docker

FROM archlinux:base-devel
RUN pacman -Sy --noconfirm stow nodejs npm git sudo \
&& useradd -m tester \
&& echo 'tester ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers
USER tester
WORKDIR /home/tester