blob: 20f0343ea41ab1936d2c21438a6b6a9b8115c151 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
FROM docker.io/base/archlinux:latest
RUN pacman -Syuuuu --noconfirm
RUN pacman -Syu --noconfirm cmake base-devel git clang-tools-extra
RUN useradd -m -G wheel -s /bin/bash builder
RUN sed -i '/^# %wheel ALL=(ALL) NOPASSWD: ALL/s/^# //' /etc/sudoers
WORKDIR /home/builder
USER builder
|