From 27d955c44e495d848136723882a572f9ebd28438 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 27 Jun 2024 19:57:01 -0400 Subject: [PATCH] hack: Remove everything in /tmp Somehow, something else is leaking into `/tmp` at least in the GHA runs...remove it all. Signed-off-by: Colin Walters --- hack/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/Containerfile b/hack/Containerfile index 3c414126..bc45d202 100644 --- a/hack/Containerfile +++ b/hack/Containerfile @@ -25,7 +25,7 @@ RUN /tmp/provision-derived.sh "$variant" && rm -f /tmp/*.sh COPY hack/install-test-configs/* /usr/lib/bootc/install/ # Inject our built code COPY --from=build /out/bootc.tar.zst /tmp -RUN tar -C / --zstd -xvf /tmp/bootc.tar.zst && rm -vf /tmp/* +RUN tar -C / --zstd -xvf /tmp/bootc.tar.zst && rm -vrf /tmp/* # Also copy over arbitrary bits from the target root COPY --from=build /build/target/dev-rootfs/ / # Test our own linting