From a3f586c6ab5ce3c4b76e5a18f7d48527bb9d808b Mon Sep 17 00:00:00 2001 From: Helder Correia <174525+helderco@users.noreply.github.com> Date: Thu, 13 Jan 2022 01:04:28 -0100 Subject: [PATCH] Port docker.#Copy to hidden fields Signed-off-by: Helder Correia <174525+helderco@users.noreply.github.com> --- pkg/universe.dagger.io/docker/build.cue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/universe.dagger.io/docker/build.cue b/pkg/universe.dagger.io/docker/build.cue index 373707ec..cc04cb67 100644 --- a/pkg/universe.dagger.io/docker/build.cue +++ b/pkg/universe.dagger.io/docker/build.cue @@ -42,18 +42,18 @@ import ( dest: string | *"/" // Execute copy operation - copy: engine.#Copy & { + _copy: engine.#Copy & { "input": input.rootfs "source": { root: contents path: source } - dest: copy.dest + "dest": dest } output: #Image & { config: input.config - rootfs: copy.output + rootfs: _copy.output } }