How to Use Pulled Image as a Cache with `docker buildx`
We're building Docker images in our CI, but we can't get docker buildx build to utilise a pulled image as a cache. Here are the docker commands that are executed: docker pull "ghcr.io/foo/bar/baz" docker buildx build . --tag "ghcr.io/foo/bar/baz" docker…