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>
35 lines
520 B
CUE
35 lines
520 B
CUE
package test
|
|
|
|
import (
|
|
"dagger.io/dagger"
|
|
"universe.dagger.io/alpine"
|
|
"universe.dagger.io/docker"
|
|
)
|
|
|
|
dagger.#Plan & {
|
|
actions: {
|
|
build: alpine.#Build & {
|
|
packages: {
|
|
jq: {}
|
|
curl: {}
|
|
}
|
|
}
|
|
|
|
check: docker.#Run & {
|
|
image: build.output
|
|
command: {
|
|
name: "sh"
|
|
flags: "-c": """
|
|
jq --version > /jq-version.txt
|
|
curl --version > /curl-version.txt
|
|
"""
|
|
}
|
|
|
|
export: files: {
|
|
"/jq-version.txt": contents: =~"^jq"
|
|
"/curl-version.txt": contents: =~"^curl"
|
|
}
|
|
}
|
|
}
|
|
}
|