From 5ccbbd76a6ec2f74d168ac32410c49e4873a3737 Mon Sep 17 00:00:00 2001 From: Vikyath Harekal Date: Tue, 10 Dec 2024 05:03:27 +0000 Subject: [PATCH] feat: [CDE-549]: debug (#3137) * feat: [CDE-549]: debug --- .../orchestrator/container/devcontainer_container_utils.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/gitspace/orchestrator/container/devcontainer_container_utils.go b/app/gitspace/orchestrator/container/devcontainer_container_utils.go index 1ab5c9c91..f726bd692 100644 --- a/app/gitspace/orchestrator/container/devcontainer_container_utils.go +++ b/app/gitspace/orchestrator/container/devcontainer_container_utils.go @@ -369,7 +369,7 @@ func CopyImage( // Build skopeo command platform := getPlatform(runArgsMap) - args := []string{"copy"} + args := []string{"copy", "--debug"} if platform != "" { args = append(args, "--override-os", platform) @@ -385,6 +385,7 @@ func CopyImage( // Source and destination source := "docker://" + imageName + // TODO: if imageName doesn't have tag, use latest in destination destination := "docker-daemon:" + imageName args = append(args, source, destination)