diff --git a/stdlib/alpine/alpine.cue b/stdlib/alpine/alpine.cue index 071c8f20..4e9735ac 100644 --- a/stdlib/alpine/alpine.cue +++ b/stdlib/alpine/alpine.cue @@ -5,13 +5,17 @@ import ( "dagger.io/dagger/op" ) +// Default Alpine version let defaultVersion = "3.13.5@sha256:69e70a79f2d41ab5d637de98c1e0b055206ba40a8145e7bddb55ccc04e13cf8f" // Base image for Alpine Linux #Image: { + // List of packages to install package: [string]: true | false | string + // Alpine version to install version: string | *defaultVersion + // Use of os package not possible : alpine is a low level component #up: [ op.#FetchContainer & { ref: "index.docker.io/alpine:\(version)"