1a3dc3debc
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
38 lines
531 B
CUE
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},
|
|
]
|
|
}
|
|
}
|