docker-arch/Dockerfile

22 lines
351 B
Docker
Raw Normal View History

2021-10-09 12:20:47 +00:00
FROM archlinux:base-devel
2021-10-09 12:16:01 +00:00
2021-10-11 15:56:18 +00:00
ADD pacman.conf /etc/pacman.conf
2021-10-09 12:42:03 +00:00
RUN pacman -Syu --noconfirm \
git \
2021-10-10 12:46:01 +00:00
git-lfs \
2021-10-09 17:12:12 +00:00
base \
wget \
2021-10-09 21:24:06 +00:00
curl \
python \
python-pip \
python-requests
2021-10-09 12:52:02 +00:00
2021-10-09 13:30:21 +00:00
RUN useradd -m -d /build -s /bin/bash archie
ADD sudoers /etc/sudoers
2021-10-09 12:52:02 +00:00
USER archie
2021-10-09 13:33:34 +00:00
RUN sudo echo "Running 'sudo' for archie: success"