From df45d535511ea925f26991a8f6045c807a31f0c4 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Tue, 20 May 2025 14:32:22 -0400 Subject: [PATCH] Containerfile: drop type=cache mount from RUN We're currently not using this cache /workdir and we ultimately can't right now until [1] lands in an rpm-ostree release. See some background context on this in [2] [3]. [1] https://github.com/coreos/rpm-ostree/pull/5391 [2] https://gitlab.com/fedora/bootc/base-images/-/merge_requests/180 [3] https://github.com/coreos/rpm-ostree/pull/5386 --- Containerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index f89430c..9c77144 100644 --- a/Containerfile +++ b/Containerfile @@ -28,8 +28,7 @@ ARG MANIFEST=fedora-standard COPY . /src WORKDIR /src RUN rm -vf /src/*.repo -RUN --mount=type=cache,target=/workdir \ - --mount=type=bind,rw,from=repos,src=/,dst=/repos <