We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e09e77f + f011d2d commit adc1b4dCopy full SHA for adc1b4d
doozer/doozerlib/build_info.py
@@ -231,7 +231,9 @@ def get_image_meta(self):
231
return self.build_record_inspector.get_image_meta()
232
233
def get_pullspec(self):
234
- return self._image_info['name']
+ manifest_pullspec = self._image_info['name']
235
+ content_digest = self._image_info['digest']
236
+ return f'{manifest_pullspec.split("@")[0]}@{content_digest}'
237
238
def image_arch(self):
239
return brew_arch_for_go_arch(self._image_info.config.architecture)
0 commit comments