Signed-off-by: Sam Alba <sam.alba@gmail.com>
This commit is contained in:
Sam Alba 2021-04-02 16:46:41 -07:00
parent 3e605d1d72
commit e6b0ca5109

View File

@ -6,7 +6,7 @@ import (
) )
source: dagger.#Artifact source: dagger.#Artifact
foo: "bar" foo: "bar"
bar: { bar: {
string string
@ -14,12 +14,12 @@ bar: {
#compute: [ #compute: [
llb.#FetchContainer & {ref: "busybox"}, llb.#FetchContainer & {ref: "busybox"},
llb.#Exec & { llb.#Exec & {
args: ["cp", "/source/testfile", "/out"], args: ["cp", "/source/testfile", "/out"]
mount: "/source": from: source mount: "/source": from: source
}, },
llb.#Export & { llb.#Export & {
format: "string" format: "string"
source: "/out" source: "/out"
} },
] ]
} }