From 61bc60493f3e083664e6a9f80a3cae04cbdf58c2 Mon Sep 17 00:00:00 2001 From: Sergio <77530549+sergi0g@users.noreply.github.com> Date: Wed, 4 Dec 2024 19:52:51 +0200 Subject: [PATCH] This is the last time I promise --- src/docker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docker.rs b/src/docker.rs index 6d25b8c..b18bc34 100644 --- a/src/docker.rs +++ b/src/docker.rs @@ -43,7 +43,7 @@ pub async fn get_images_from_docker_daemon( .collect(); let mut image_handles = Vec::with_capacity(inspects.len()); for inspect in inspects { - image_handles.push(Image::from_inspect_data(inspect.clone())); + image_handles.push(Image::from_inspect_data(inspect)); } join_all(image_handles) .await