c2766c265b
Signed-off-by: Solomon Hykes <solomon@dagger.io>
20 lines
292 B
CUE
20 lines
292 B
CUE
package main
|
|
|
|
import (
|
|
"dagger.io/dagger"
|
|
)
|
|
|
|
dagger.#Plan & {
|
|
actions: data: dagger.#WriteFile & {
|
|
input: dagger.#Scratch
|
|
path: "/test"
|
|
permissions: 0o600
|
|
contents: "foobar"
|
|
}
|
|
|
|
outputs: directories: test: {
|
|
contents: actions.data.output
|
|
dest: "./out"
|
|
}
|
|
}
|