This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/stdlib/docker/docker.cue
Solomon Hykes 299a38c6b1 Simplify "dev dagger with dagger" example
Signed-off-by: Solomon Hykes <sh.github.6811@hykes.org>
2021-04-06 13:41:21 -07:00

40 lines
543 B
CUE

package docker
import (
"dagger.io/dagger"
"dagger.io/dagger/op"
)
#Image: dagger.#Artifact
#Ref: string
// Build a docker container image
#Build: {
source: dagger.#Artifact
image: #up: [
op.#DockerBuild & {context: source},
]
}
#Run: {
args: [...string]
// image may be a remote image ref, or a computed artifact
{
image: #Ref
out: #up: [
op.#FetchContainer & {ref: image},
op.#Exec & {"args": args},
]
} | {
image: _
out: #up: [
op.#Load & {from: image},
op.#Exec & {"args": args},
]
}
}