13 lines
157 B
CUE
13 lines
157 B
CUE
|
package main
|
||
|
|
||
|
import (
|
||
|
"dagger.io/dagger"
|
||
|
"dagger.io/dagger/core"
|
||
|
)
|
||
|
|
||
|
dagger.#Plan & {
|
||
|
actions: test: image: core.#Pull & {
|
||
|
source: "alpine:3.15.0"
|
||
|
}
|
||
|
}
|