Files
ps5-linux-image/docker/kernel-builder-arch/Dockerfile
T
2026-04-26 10:25:41 +02:00

17 lines
393 B
Docker

FROM archlinux:latest
# Only packaging tools needed — kernel is already compiled
RUN pacman -Syu --noconfirm && pacman -S --noconfirm \
zstd libarchive && \
pacman -Scc --noconfirm
WORKDIR /out/staging
# Pre-built artifacts are bind-mounted at /out/staging
# Output packages go to /out
COPY docker/kernel-builder-arch/build.sh /build.sh
RUN chmod +x /build.sh
CMD ["/build.sh"]