e6c482cb83
Signed-off-by: dubo-dubon-duponey <dubodubonduponey+github@pm.me>
30 lines
421 B
CUE
30 lines
421 B
CUE
package testing
|
|
|
|
teststring: {
|
|
string
|
|
|
|
#dagger: {
|
|
compute: [
|
|
{
|
|
do: "fetch-container"
|
|
ref: "alpine"
|
|
},
|
|
{
|
|
do: "exec"
|
|
args: ["sh", "-c", """
|
|
echo something > /tmp/out
|
|
"""
|
|
]
|
|
// XXX Blocked by https://github.com/blocklayerhq/dagger/issues/19
|
|
dir: "/"
|
|
},
|
|
{
|
|
do: "export"
|
|
// Source path in the container
|
|
source: "/tmp/out"
|
|
format: "lalalalal"
|
|
},
|
|
]
|
|
}
|
|
}
|