Open
Description
When the cache registry already contains the docker image that we want to build (cache hit) leeway
currently does basically a docker pull <version-tag> && docker tag <version-tag> <new-tag> && docker push <new-tag>
. This seems to spam IO on our build nodes and takes time as we do a "full" build on each branch creation/push.
It would be nice if we could just create a new manifest which contains the already existing layers instead ("remote tag").