From 53d954a9f8dc4e484d20e93e94b90b9ce9da0c55 Mon Sep 17 00:00:00 2001 From: "Lance R. Vick" Date: Mon, 5 Feb 2024 03:11:28 -0800 Subject: [PATCH] fix bootstrap image names --- src/bootstrap/stage1/Containerfile | 2 +- src/bootstrap/stage2/Containerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bootstrap/stage1/Containerfile b/src/bootstrap/stage1/Containerfile index de04791..ff3b66e 100644 --- a/src/bootstrap/stage1/Containerfile +++ b/src/bootstrap/stage1/Containerfile @@ -44,7 +44,7 @@ BUILD_KERNELS=False" \ RUN touch /rootfs/steps/lwext4-1.0.0-lb1/files/fiwix-file-list.txt FROM scratch as build -COPY --from=stage0 / . +COPY --from=stagex/stage0 / . COPY --from=config /rootfs . ENV ARCH_DIR=x86 ENV ARCH=x86 diff --git a/src/bootstrap/stage2/Containerfile b/src/bootstrap/stage2/Containerfile index 638f801..b187103 100644 --- a/src/bootstrap/stage2/Containerfile +++ b/src/bootstrap/stage2/Containerfile @@ -165,7 +165,7 @@ RUN set -eux; \ FROM build as install WORKDIR ${HOME} USER 0:0 -COPY --from=stage1 . /rootfs/ +COPY --from=stagex/stage1 . /rootfs/ RUN set -eux; \ rm /rootfs/lib; \ env -C build-musl make DESTDIR=/rootfs/${TARGET} install; \