62b58f7e39
Signed-off-by: Joel Longtine <joel@dagger.io>
15 lines
257 B
CUE
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
|
|
}
|
|
}
|