This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/stdlib/os/dir.cue
Solomon Hykes d7a805f42b stdlib: move all imports to alpha.dagger.io
Signed-off-by: Solomon Hykes <solomon@dagger.io>
2021-06-25 10:31:22 +00:00

45 lines
697 B
CUE

package os
import (
"alpha.dagger.io/dagger"
"alpha.dagger.io/dagger/op"
)
#Dir: {
from: dagger.#Artifact
path: string | *"/"
#up: [
op.#Load & {"from": from},
op.#Subdir & {
dir: path
},
]
}
#ReadDir: {
from: dagger.#Artifact
path: string
// Read the tree structure (not file contents)
read: tree: {
string// FIXME: only raw 'find' output for now
#up: [
op.#FetchContainer & {
ref: "alpine" // FIXME: use alpine or docker package
},
op.#Exec & {
mount: "/data": "from": from
args: [
"sh", "-c",
#"find /data | sed 's/^\/data//' > /export.txt"#,
]
},
op.#Export & {
source: "/export.txt"
format: "string"
},
]
}
}