You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# See https://www.reddit.com/r/rust/comments/126xeyx/exploring_the_problem_of_faster_cargo_docker/
8
+
# We aren't using the full recommendations there, just the simple bits.
9
+
RUN --mount=type=cache,target=/build/target --mount=type=cache,target=/var/roothome make && make bin-archive && mkdir -p /out && cp target/bootupd.tar.zst /out
10
+
11
+
FROM quay.io/centos-bootc/centos-bootc-dev:stream9
12
+
COPY --from=build /out/bootupd.tar.zst /tmp
13
+
RUN tar -C / --zstd -xvf /tmp/bootupd.tar.zst && rm -vf /tmp/*
0 commit comments