Add export and load for dagger images

Signed-off-by: Helder Correia <174525+helderco@users.noreply.github.com>
This commit is contained in:
Helder Correia
2022-03-24 11:59:05 -01:00
parent e46acc8053
commit 7a8153910c
15 changed files with 488 additions and 7 deletions

View File

@@ -137,3 +137,6 @@ setup() {
"$DAGGER" "do" -p ./tasks/diff/diff.cue test
}
@test "task: #Export" {
"$DAGGER" "do" -p ./tasks/export/export.cue test
}

View File

@@ -0,0 +1,28 @@
package main
import (
"dagger.io/dagger"
)
dagger.#Plan & {
actions: test: {
image: dagger.#Pull & {
source: "alpine:3.15"
}
export: dagger.#Export & {
input: image.output
config: image.config
tag: "example"
}
verify: dagger.#Exec & {
input: image.output
mounts: exported: {
contents: export.output
dest: "/src"
}
args: ["tar", "tf", "/src/image.tar", "manifest.json"]
}
}
}