docker-image-resource
docker-image-resource copied to clipboard
Image get does not set the tag after the image is pulled by SHA
When an image is pulled it is pulled by SHA which is right because this is how it is versioned. It is not tagged after that though which makes it impossible to be referred to from the cache.
Using docker such command will resolve the issue:
docker image tag <IMAGE_ID> <REPOSITORY>:<TAG>
Hi, would cache_from solve your use case?