From 17f0b8b1aabc830953afd0b2c2967129cbb33c67 Mon Sep 17 00:00:00 2001 From: Helder Correia <174525+helderco@users.noreply.github.com> Date: Tue, 18 Jan 2022 19:19:08 -0100 Subject: [PATCH] Fix missing auth in docker.#Push Signed-off-by: Helder Correia <174525+helderco@users.noreply.github.com> --- pkg/universe.dagger.io/docker/push.cue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg/universe.dagger.io/docker/push.cue b/pkg/universe.dagger.io/docker/push.cue index f4c743f8..391a3da7 100644 --- a/pkg/universe.dagger.io/docker/push.cue +++ b/pkg/universe.dagger.io/docker/push.cue @@ -25,6 +25,10 @@ import ( _push: engine.#Push & { "dest": dest + "auth": [ for target, creds in auth { + "target": target + creds + }] input: image.rootfs config: image.config }