65ebbc8ecb
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
22 lines
299 B
CUE
22 lines
299 B
CUE
package testing
|
|
|
|
import "dagger.io/dagger/op"
|
|
|
|
foo: "value"
|
|
bar: "another value"
|
|
computed: {
|
|
string
|
|
#up: [
|
|
op.#FetchContainer & {ref: "busybox"},
|
|
op.#Exec & {
|
|
args: ["sh", "-c", """
|
|
printf test > /export
|
|
"""]
|
|
},
|
|
op.#Export & {
|
|
source: "/export"
|
|
format: "string"
|
|
},
|
|
]
|
|
}
|