From 4895747f354d18d80d295bfd86742d8dbcdb2fff Mon Sep 17 00:00:00 2001 From: Carlos Venegas Date: Tue, 29 Jun 2021 14:57:51 +0000 Subject: [PATCH] Rootfs: Add curl to alpine rootfs builder. If alpine image is created inside a container, it does not get any golang version data. It will try to get it by installing yq. To install yq curl is used. Signed-off-by: Carlos Venegas --- tools/osbuilder/rootfs-builder/alpine/Dockerfile.in | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/osbuilder/rootfs-builder/alpine/Dockerfile.in b/tools/osbuilder/rootfs-builder/alpine/Dockerfile.in index e755056f5a..0f9e66e45e 100644 --- a/tools/osbuilder/rootfs-builder/alpine/Dockerfile.in +++ b/tools/osbuilder/rootfs-builder/alpine/Dockerfile.in @@ -8,5 +8,6 @@ FROM ${IMAGE_REGISTRY}/alpine:3.13.5 RUN apk update && apk add \ bash \ + curl \ coreutils \ binutils