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
Andrea Luzzardi 1a3dc3debc dagger spec: fix Artifact definition
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
2021-03-31 14:20:31 -07:00

38 lines
531 B
CUE

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