9 lines
203 B
Docker
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
|