docker-arch/Dockerfile

22 lines
336 B
Docker

FROM archlinux:base-devel
ADD pacman.conf /etc/pacman.conf
RUN pacman -Syu --noconfirm \
git \
git-lfs \
base \
wget \
curl \
python \
python-pip \
python-requests
RUN useradd --create-home build
ADD sudoers /etc/sudoers
USER build
RUN sudo echo "Running 'sudo' for build: success"