Open
Description
Question
Hi, I've seen an interesting trick at https://github.com/pyca/infra/blob/d52c449/.github/workflows/build-docker-images.yml#L58 where they use docker build --cache-from=...
to have Docker reuse some of the layer cache from an earlier image version IIUC.
When I saw #43 / #42, I thought — would it be possible to do the same with podman/buildah? What would be required? Would podman pull
coupled with layers: true
be enough? Is there something I'm misunderstanding in how buildah works? (there probably is)
I know that podman
's --cache-from
is no-op but I thought maybe it is possible to achieve somehow on the buildah
level?