c2766c265b
Signed-off-by: Solomon Hykes <solomon@dagger.io>
15 lines
237 B
CUE
15 lines
237 B
CUE
package main
|
|
|
|
import (
|
|
"dagger.io/dagger"
|
|
)
|
|
|
|
dagger.#Plan & {
|
|
actions: build: dagger.#Build & {
|
|
source: dagger.#Scratch
|
|
dockerfile: contents: "FROM scratch"
|
|
// Assert that output is dagger.#Scratch
|
|
output: dagger.#Scratch
|
|
}
|
|
}
|