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>
37 lines
613 B
CUE
37 lines
613 B
CUE
package test
|
|
|
|
import (
|
|
"dagger.io/dagger"
|
|
"dagger.io/dagger/engine"
|
|
"universe.dagger.io/docker"
|
|
"universe.dagger.io/alpine"
|
|
)
|
|
|
|
// This test verify that we can correctly build a simplistic image
|
|
// using docker.#Build
|
|
dagger.#Plan & {
|
|
#testValue: "hello world"
|
|
|
|
actions: {
|
|
image: docker.#Build & {
|
|
steps: [
|
|
alpine.#Build,
|
|
docker.#Run & {
|
|
command: {
|
|
name: "sh"
|
|
flags: "-c": "echo -n $TEST >> /test.txt"
|
|
}
|
|
env: TEST: #testValue
|
|
},
|
|
]
|
|
}
|
|
|
|
verify: engine.#ReadFile & {
|
|
input: image.output.rootfs
|
|
path: "/test.txt"
|
|
} & {
|
|
contents: #testValue
|
|
}
|
|
}
|
|
}
|