b3bdd347e7
Signed-off-by: Helder Correia <174525+helderco@users.noreply.github.com>
23 lines
424 B
CUE
23 lines
424 B
CUE
package testing
|
|
|
|
import (
|
|
"dagger.io/dagger"
|
|
"dagger.io/dagger/core"
|
|
)
|
|
|
|
dagger.#Plan & {
|
|
client: filesystem: testdata: read: contents: dagger.#FS
|
|
|
|
actions: {
|
|
build: core.#Dockerfile & {
|
|
source: client.filesystem.testdata.read.contents
|
|
dockerfile: path: "./dockerfilepath/Dockerfile.custom"
|
|
}
|
|
|
|
verify: core.#Exec & {
|
|
input: build.output
|
|
args: ["sh", "-c", "test $(cat /test) = dockerfilePath"]
|
|
}
|
|
}
|
|
}
|