Add Dockerfile and CI build workflow

This commit is contained in:
2026-06-07 19:38:16 +02:00
parent 24ccf7d09d
commit c8d450871b
2 changed files with 54 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
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", "."]