Skip to content

Commit

Permalink
Merge pull request #60 from danykaufman/development_py39
Browse files Browse the repository at this point in the history
Save images separately
  • Loading branch information
alexpirogovski authored Nov 13, 2023
2 parents dc2f6eb + 5a2fc52 commit ee4326f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def task_project_build(project, output_dir='flex_fuse_resources', tag='igz',
{
'name': 'save_images',
'args': {
'output_filepath': os.path.join(save_images_dir, 'flex-fuse-docker-images.tar.gz'),
'output_filepath': save_images_dir,
'images': ['iguazio/flex-fuse:{}'.format(tag)],
},
},
Expand All @@ -213,7 +213,7 @@ def task_save_images(project, images, output_filepath=None):
output_filepath=output_filepath)

project.logger.debug('Saving docker images', images=images)
yield ziggy.docker.save_images(project.ctx, images, output_filepath, compress=True)
yield ziggy.docker.save_images_separately(project.ctx, images, output_filepath, compress=True)
project.logger.debug('Done saving docker images', output_filepath=output_filepath)


Expand Down

0 comments on commit ee4326f

Please sign in to comment.