From a37bf83dfced7684ce25d64156c302b0d95337ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Fri, 27 Feb 2026 19:37:11 +0100 Subject: [PATCH] Also set DestinationCtx in a copy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It shouldn't actually affect anything, but it's easier to set it than worry. Signed-off-by: Miloslav Trmač --- pkg/machine/ocipull/pull.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/machine/ocipull/pull.go b/pkg/machine/ocipull/pull.go index 0ae95f4130..120c221ef2 100644 --- a/pkg/machine/ocipull/pull.go +++ b/pkg/machine/ocipull/pull.go @@ -87,7 +87,8 @@ func pull(ctx context.Context, imageInput types.ImageReference, localDestPath *d } copyOpts := copy.Options{ - SourceCtx: sysCtx, + SourceCtx: sysCtx, + DestinationCtx: sysCtx, } if !options.quiet { copyOpts.ReportWriter = os.Stderr