From 22cfd02909f10dd9ad8cbbdf3656a5298d4c236f Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 9 Jan 2025 15:29:26 -0500 Subject: [PATCH] build-sys: Switch to heredoc for RUN It's a bit more legible as is, but this is prep for further work. Signed-off-by: Colin Walters --- Containerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Containerfile b/Containerfile index abc0b92..ed14f01 100644 --- a/Containerfile +++ b/Containerfile @@ -41,10 +41,12 @@ RUN rm -vf /src/*.repo COPY --from=repos /etc/yum.repos.d/*.repo /src RUN --mount=type=cache,target=/workdir \ --mount=type=bind,rw=true,src=.,dst=/buildcontext,bind-propagation=shared \ - --mount=type=bind,from=repos,src=/,dst=/repos \ - rpm-ostree compose image --image-config fedora-bootc-config.json \ - --cachedir=/workdir --format=ociarchive --initialize ${MANIFEST} \ + --mount=type=bind,from=repos,src=/,dst=/repos <