stdlib: improved Docker package

Signed-off-by: Solomon Hykes <sh.github.6811@hykes.org>
This commit is contained in:
Solomon Hykes
2021-04-06 21:20:21 +00:00
parent d522fc3396
commit 647e4c898b
7 changed files with 49 additions and 122 deletions

View File

@@ -1,39 +0,0 @@
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},
]
}
}