// llb: compile LLB graphs executable by buildkit
package llb
// One operation in a script
#Op: #Export |
#FetchContainer |
#PushContainer |
#FetchGit |
#Exec |
#Local |
#Copy |
#Load |
#Subdir |
#WriteFile |
#Mkdir |
#Dockerbuild
// Export a value from fs state to cue
#Export: {
do: "export"
// Source path in the container
source: string
format: "json" | "yaml" | *"string"
}
#Local: {
do: "local"
dir: string
include: [...string]
// FIXME: bring back load (more efficient than copy)
#Load: {
do: "load"
from: _
#Subdir: {
do: "subdir"
dir: string | *"/"
#Exec: {
do: "exec"
args: [...string]
env?: [string]: string
always?: true | *false
mount: [string]: "tmpfs" | "cache" | {from: _, path: string | *"/"}
#FetchContainer: {
do: "fetch-container"
ref: string
#PushContainer: {
do: "push-container"
#FetchGit: {
do: "fetch-git"
remote: string
#Copy: {
do: "copy"
src: string | *"/"
dest: string | *"/"
#DockerBuild: {
do: "docker-build"
// We accept either a context, a Dockerfile or both together
context?: _
dockerfilePath?: string // path to the Dockerfile (defaults to "Dockerfile")
dockerfile?: string
platforms?: [...string]
buildArg?: [string]: string
label?: [string]: string
#WriteFile: {
do: "write-file"
content: string
dest: string
mode: int | *0o644
#Mkdir: {
do: "mkdir"
dir: *"/" | string
path: string
mode: int | *0o755