FROM archlinux/base:latest LABEL maintainer "J. Elfring " ## Set faster mirrors COPY assets/mirrorlist /etc/pacman.d/mirrorlist ## Install prereqs and create a user with ## administrative privileges to install packages RUN pacman --sync --refresh --needed --noconfirm \ base-devel \ git \ && useradd --create-home user COPY assets/sudoers /etc/sudoers ## Switch to the new user and install yaourt from aur USER user RUN cd /tmp \ ## Install package-query, a prereq for yaourt && curl -O https://aur.archlinux.org/cgit/aur.git/snapshot/package-query.tar.gz \ && tar -xvzf package-query.tar.gz \ && cd package-query \ && makepkg -si --noconfirm \ && cd /tmp \ && rm -rf package-query.tar.gz package-query \ ## Install yaourt && curl -O https://aur.archlinux.org/cgit/aur.git/snapshot/yaourt.tar.gz \ && tar -xvzf yaourt.tar.gz \ && cd yaourt \ && makepkg -si --noconfirm \ && cd /tmp \ && rm -rf yaourt.tar.gz yaourt \ ## Install profanity && cd /home/user \ && yaourt --sync --noconfirm profanity-git \ ## Cleanup && sudo pacman --noconfirm -Rcns yaourt package-query git \ && sudo pacman --noconfirm -Rsn $(pacman -Qqdt) WORKDIR /home/user CMD ["/usr/sbin/profanity"]