This repository was archived by the owner on Jun 3, 2025. It is now read-only.

Description
Dockerfile to reproduce:
FROM debian:buster-slim AS importer
RUN apt-get update && apt-get install -y libguestfs-tools wget xz-utils
RUN wget -nv https://raspi.debian.net/verified/20210718_raspi_4_buster.img.xz && xz -d 20210718_raspi_4_buster.img.xz && mkdir /rootfs && guestfish --ro -a 20210718_raspi_4_buster.img -m /dev/sda2 copy-out / /rootfs/ && rm 20210718_raspi_4_buster.img
FROM scratch
COPY --from=importer /rootfs/ /
For v1.6.0 this hangs at "Saving file rootfs for later use". This is also described in #960 and the PR #1724 improves the situation. However, it now stops in the copy step reporting
error building image: error building stage: failed to execute command: copying dir: chown /sys: read-only file system
The workaround from #1007 seems to work though.