mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-06 00:45:43 +00:00
Just like buildkit buildah must allow cleaning the buildcache and cache generated on host by --mount=type=cache just like buildkit's prune command. See: https://github.com/moby/buildkit#cache Signed-off-by: Aditya R <arajan@redhat.com>
4 lines
119 B
Text
4 lines
119 B
Text
FROM alpine
|
|
RUN mkdir /test
|
|
# use option z if selinux is enabled
|
|
RUN --mount=type=cache,target=/test,z cat /test/world
|