ported alpine to europa

Signed-off-by: Richard Jones <richard@dagger.io>
This commit is contained in:
Richard Jones
2022-01-18 13:17:19 -07:00
parent 8b2ee53016
commit 429b29679f
4 changed files with 54 additions and 42 deletions

View File

@@ -0,0 +1,22 @@
package test
import (
"dagger.io/dagger"
"dagger.io/dagger/engine"
"universe.dagger.io/alpine"
)
dagger.#Plan & {
actions: {
build: alpine.#Build & {
// install an old version on purpose
version: "3.10.9"
}
check: engine.#Readfile & {
input: build.output.rootfs
path: "/etc/alpine-release"
contents: "3.10.9\n"
}
}
}