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/dagger/dagger.cue
Andrea Luzzardi 0f4a55a482 socket -> stream
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
2021-09-17 15:19:15 -07:00

42 lines
518 B
CUE

// Dagger core types
package dagger
import (
"alpha.dagger.io/dagger/op"
)
// An artifact such as source code checkout, container image, binary archive...
// May be passed as user input, or computed by a buildkit pipeline
#Artifact: {
@dagger(artifact)
#up: [...op.#Op]
_
...
}
// Dagger stream. Can be mounted as a UNIX socket.
#Stream: {
@dagger(stream)
unix: string
}
// Secret value
#Secret: {
@dagger(secret)
id: string
}
#Input: {
@dagger(input)
_
...
}
#Output: {
@dagger(output)
_
...
}