54a2fe4393
Signed-off-by: Solomon Hykes <sh.github.6811@hykes.org>
18 lines
403 B
CUE
18 lines
403 B
CUE
package dagger
|
|
|
|
import (
|
|
"dagger.io/llb"
|
|
)
|
|
|
|
// An artifact such as source code checkout, container image, binary archive...
|
|
// May be passed as user input, or computed by a buildkit pipeline
|
|
#Artifact: #compute: [...llb.#Op]
|
|
|
|
// deprecated, use #Artifact instead.
|
|
#Dir: #Artifact
|
|
|
|
// Secret value
|
|
// FIXME: currently aliased as a string to mark secrets
|
|
// this requires proper support.
|
|
#Secret: string
|