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

37 lines
524 B
CUE
Raw Normal View History

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},
]
}
}