# This test case exercises using the fedora-bootc image as a builder to # generate a minimal target image, and then further extends it in a secondary # phase. # This is intentionally a locally built image FROM localhost/fedora-bootc as builder RUN < args.txt /usr/libexec/bootc-base-imagectl --args-file args.txt build-rootfs --manifest=standard/manifest /target-rootfs EORUN # This pulls in the rootfs generated in the previous step FROM scratch COPY --from=builder /target-rootfs/ / RUN <