1f640d3e25
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
22 lines
232 B
CUE
22 lines
232 B
CUE
package testing
|
|
|
|
import "dagger.io/dagger/op"
|
|
|
|
test: {
|
|
string
|
|
|
|
#up: [
|
|
op.#Load & {
|
|
from: [
|
|
op.#FetchContainer & {
|
|
ref: "alpine"
|
|
},
|
|
]
|
|
},
|
|
op.#Export & {
|
|
source: "/etc/issue"
|
|
format: "string"
|
|
},
|
|
]
|
|
}
|