Replies: 1 comment
-
@nalind @TomSweeneyRedHat This looks like a Buildah question? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Many CI/CD systems run builds in a fresh environment every time. That means there are no cached layers present, so container image builds start from scratch each time.
Docker has a few ways to inject layers into the build cache: the
--cache-from
option anddocker save
/docker load
. These make it possible to export docker's build cache into the CI/CD system's cache and then restore it for later builds.Is there any way to do that in podman? It seems that
--cache-from
is a no-op andpodman load
doesn't add the loaded layers to the cache.Beta Was this translation helpful? Give feedback.
All reactions