From d8c5706cffe337bb2b0fc97a251ade5af0e82031 Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Tue, 21 May 2019 10:51:05 +0100 Subject: [PATCH] rootfs: Don't hardcode alpine version for golang images Remove the version of alpine used when pulling golang docker images. This ensures the latest version of alpine is used and resolves the maintenance issue when old versions of alpine are dropped. Fixes: #293. Signed-off-by: James O. D. Hunt --- rootfs-builder/alpine/Dockerfile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rootfs-builder/alpine/Dockerfile.in b/rootfs-builder/alpine/Dockerfile.in index 1b150626f7..5208043d1b 100644 --- a/rootfs-builder/alpine/Dockerfile.in +++ b/rootfs-builder/alpine/Dockerfile.in @@ -3,6 +3,6 @@ # # SPDX-License-Identifier: Apache-2.0 -From golang:@GO_VERSION@-alpine3.7 +From golang:@GO_VERSION@-alpine RUN apk update && apk add git make bash gcc musl-dev linux-headers apk-tools-static libseccomp libseccomp-dev