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 } }