17 lines
249 B
Docker
17 lines
249 B
Docker
FROM archlinux:latest
|
|
|
|
RUN pacman -Syu --noconfirm --needed \
|
|
archiso \
|
|
git \
|
|
squashfs-tools \
|
|
wget \
|
|
imagemagick \
|
|
&& pacman -Scc --noconfirm
|
|
|
|
WORKDIR /build
|
|
COPY . .
|
|
|
|
RUN ./prepare.sh
|
|
|
|
CMD ["/usr/bin/mkarchiso", "-v", "."]
|