From 78fac97ae837a3881a66c1f169b427b7094be749 Mon Sep 17 00:00:00 2001 From: Daniel Sotirhos Date: Thu, 19 Dec 2024 12:32:20 -0800 Subject: [PATCH] Fix: No progress information while copying images to ECR (#6681) --- scripts/manage_images.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/manage_images.py b/scripts/manage_images.py index ce1ad03c58..51dacdf1a3 100644 --- a/scripts/manage_images.py +++ b/scripts/manage_images.py @@ -79,7 +79,7 @@ def copy_single_platform_image(src: TagImageRef, with Repository.temporary_auth_file(dst, src) as auth_file: command = [ - 'skopeo', 'copy', '--authfile', auth_file, '--preserve-digests', + 'skopeo', 'copy', '--authfile', auth_file, '--preserve-digests', '--debug', 'docker://' + str(src.with_digest(digest)), 'docker://' + str(dst) ]