From ddf752733a165c4925c2e271509c92f8579e2e03 Mon Sep 17 00:00:00 2001 From: Guillaume de Rouville Date: Tue, 15 Jun 2021 14:08:58 +0200 Subject: [PATCH] docs : alpine package Signed-off-by: Guillaume de Rouville --- stdlib/alpine/alpine.cue | 4 ++++ 1 file changed, 4 insertions(+) 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)"