FROM docker.io/archlinux:base-devel LABEL Description="Container to build archlinux packages" COPY packager.conf /etc/makepkg.conf.d/packager.conf COPY sudoers /etc/sudoers.d/builder COPY run.sh /run.sh # COPY ./yay /usr/bin/yay # RUN echo "169.254.1.2 archmirror.i.balki.me" >> /etc/hosts RUN pacman -Sy --noconfirm git COPY mirrorlist /etc/pacman.d/mirrorlist RUN useradd builder -m WORKDIR /home/builder USER builder CMD /run.sh