This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/tests/tasks/scratch/scratch_build_scratch.cue
Joel Longtine 62b58f7e39 cue fmt
Signed-off-by: Joel Longtine <joel@dagger.io>
2022-01-07 16:46:43 -07:00

15 lines
257 B
CUE

package main
import (
"alpha.dagger.io/europa/dagger/engine"
)
engine.#Plan & {
actions: build: engine.#Build & {
source: engine.#Scratch
dockerfile: contents: "FROM scratch"
// Assert that output is engine.#Scratch
output: engine.#Scratch
}
}