From 033d3dc55aeb9c297e210c99cb3236c15a5fe407 Mon Sep 17 00:00:00 2001 From: Christian Zunker Date: Wed, 27 Sep 2023 15:51:17 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20platformID=20for=20contain?= =?UTF-8?q?er=20images?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When scanning a single image which isn't present in the local docker daemon, the platformID was missing. Fixes #1952 Signed-off-by: Christian Zunker --- providers/os/connection/docker_container.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/providers/os/connection/docker_container.go b/providers/os/connection/docker_container.go index 4008c3859b..4dd85dc06b 100644 --- a/providers/os/connection/docker_container.go +++ b/providers/os/connection/docker_container.go @@ -297,7 +297,10 @@ func NewDockerContainerImageConnection(id uint32, conf *inventory.Config, asset // The requested image isn't locally available, but we can pull it from a remote registry. if len(resolvedAssets) > 0 && resolvedAssets[0].Connections[0].Type == "container-registry" { - return NewContainerRegistryImage(id, conf, resolvedAssets[0]) + asset.Name = resolvedAssets[0].Name + asset.PlatformIds = resolvedAssets[0].PlatformIds + asset.Labels = resolvedAssets[0].Labels + return NewContainerRegistryImage(id, conf, asset) } // could be an image id/name, container id/name or a short reference to an image in docker engine