Offline archlinux installer ISO creator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
koffe/Dockerfile

12 lines
379 B

FROM archlinux
RUN install -d /usr/bin/
RUN install -d /usr/share/koffe
RUN install -d /finalimage
COPY koffe /usr/bin/koffe
COPY pi.is /usr/share/koffe/pi.is
COPY install /usr/share/koffe/install
RUN chmod +x /usr/bin/koffe
RUN pacman -Suy --noconfirm
RUN pacman -S sudo base archiso pacman-contrib libnewt wget git --noconfirm
WORKDIR /finalimage
ENTRYPOINT ["/usr/bin/koffe"]