This commit is contained in:
parent
2fee9ca0dc
commit
dba8edf735
1 changed files with 3 additions and 3 deletions
|
@ -398,9 +398,9 @@ class ImageManager(DockerBaseClass):
|
||||||
self.fail("Error getting image %s - %s" % (image_name, str(exc)))
|
self.fail("Error getting image %s - %s" % (image_name, str(exc)))
|
||||||
|
|
||||||
try:
|
try:
|
||||||
image_tar = open(self.archive_path, 'w')
|
with open(self.archive_path, 'w') as fd:
|
||||||
image_tar.write(image.data)
|
for chunk in image.stream(2048, decode_content=False):
|
||||||
image_tar.close()
|
fd.write(chunk)
|
||||||
except Exception as exc:
|
except Exception as exc:
|
||||||
self.fail("Error writing image archive %s - %s" % (self.archive_path, str(exc)))
|
self.fail("Error writing image archive %s - %s" % (self.archive_path, str(exc)))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue