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 41c973ba04 stdlib package: docker
Signed-off-by: Solomon Hykes <sh.github.6811@hykes.org>
2021-03-12 18:10:36 -08:00

37 lines
524 B
CUE

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