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/file.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

44 lines
699 B
CUE

// OS operations
package os
import (
"alpha.dagger.io/dagger"
"alpha.dagger.io/dagger/op"
)
// Built-in file implementation, using buildkit
// A single file
#File: {
from: dagger.#Artifact | *[op.#Mkdir & {dir: "/", path: "/"}]
path: string
// Optionally write data to the file
write: *null | {
data: string
// FIXME: append
// FIXME: create + mode
}
// The contents of the file
// If a write operation is specified, it is applied first.
contents: {
string
#up: [
op.#Load & {
"from": from
},
if write != null {
op.#WriteFile & {
dest: path
content: write.data
}
},
op.#Export & {
source: path
format: "string"
},
]
}
}