rework pipeline

This commit is contained in:
2022-10-30 18:13:57 +01:00
parent cadac9fc08
commit 2b641df577
15 changed files with 345 additions and 52 deletions

View File

@@ -0,0 +1,13 @@
package container
import (
"log"
"dagger.io/dagger"
)
func LoadImage(client *dagger.Client, image string) *dagger.Container {
log.Printf("loading image: %s", image)
return client.Container().From(image)
}