diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,4 +1,8 @@ | |||
1 | FROM archlinux | 1 | FROM archlinux |
2 | RUN pacman -Sy --noconfirm sudo fakeroot base-devel | 2 | RUN pacman -Sy --noconfirm sudo fakeroot base-devel |
3 | RUN pacman -S --noconfirm git | 3 | RUN pacman -S --noconfirm git |
4 | RUN pacman -S --noconfirm vim | ||
5 | COPY docker.sudoers /etc/sudoers.d/wheel | ||
4 | RUN useradd user | 6 | RUN useradd user |
7 | RUN usermod -a user -G wheel | ||
8 | |||