b12a3bf45f
Signed-off-by: Sam Alba <sam.alba@gmail.com>
26 lines
339 B
CUE
26 lines
339 B
CUE
package testing
|
|
|
|
import (
|
|
"dagger.io/llb"
|
|
"dagger.io/dagger"
|
|
)
|
|
|
|
source: dagger.#Artifact
|
|
foo: "bar"
|
|
|
|
bar: {
|
|
string
|
|
|
|
#compute: [
|
|
llb.#FetchContainer & {ref: "busybox"},
|
|
llb.#Exec & {
|
|
args: ["cp", "/source/testfile", "/out"],
|
|
mount: "/source": from: source
|
|
},
|
|
llb.#Export & {
|
|
format: "string"
|
|
source: "/out"
|
|
}
|
|
]
|
|
}
|