354334a3dc
* `cmd` is renamed to `command` for readability * `script` is removed. Feature moves up the stack (bash.#Run, python.#Run) Signed-off-by: Solomon Hykes <solomon@dagger.io>
27 lines
392 B
CUE
27 lines
392 B
CUE
package test
|
|
|
|
import (
|
|
"dagger.io/dagger"
|
|
"universe.dagger.io/docker"
|
|
"universe.dagger.io/alpine"
|
|
)
|
|
|
|
dagger.#Plan & {
|
|
actions: {
|
|
image: alpine.#Build
|
|
|
|
run: docker.#Run & {
|
|
"image": image.output
|
|
command: {
|
|
name: "sh"
|
|
flags: "-c": #"""
|
|
echo -n hello world >> /output.txt
|
|
"""#
|
|
}
|
|
export: files: "/output.txt": _ & {
|
|
contents: "hello world"
|
|
}
|
|
}
|
|
}
|
|
}
|