6204970d53
Signed-off-by: Helder Correia <174525+helderco@users.noreply.github.com>
16 lines
315 B
CUE
16 lines
315 B
CUE
dagger.#Plan & {
|
|
// Path may be absolute, or relative to current working directory
|
|
client: filesystem: ".": read: {
|
|
// CUE type defines expected content
|
|
contents: dagger.#FS
|
|
exclude: ["node_modules"]
|
|
}
|
|
|
|
actions: {
|
|
copy: docker.Copy & {
|
|
contents: client.filesystem.".".read.contents
|
|
}
|
|
// ...
|
|
}
|
|
}
|