-
Notifications
You must be signed in to change notification settings - Fork 854
Nested docker.#Build fails #1466
Copy link
Copy link
Closed as not planned
Labels
Description
When using docker.#Build as a step within another docker.#Build, dagger throws CUE errors.
I've narrowed it down to builds containing multiple steps:
_build: docker.#Build & {
steps: [
docker.#Build & {
steps: [
docker.#Pull & {
source: "alpine"
},
// FIXME: the following breaks with:
// actions.deploy._build._dag."0".output: 1 errors in empty disjunction::
// pkg/universe.dagger.io/docker/build.cue:26:11
docker.#Run & {
cmd: name: "ls"
},
]
},
docker.#Run & {
cmd: name: "ls"
},
]
}/cc @shykes
Reactions are currently unavailable