From fe9a7573796600c4856deba46e0dad64cda4d617 Mon Sep 17 00:00:00 2001 From: Peter Nicolai Motzfeldt Date: Mon, 4 Oct 2021 16:42:00 +0200 Subject: [PATCH] fix: bump alpine version 3.14 The GO build fails in 3.13 due to Go version 1.15, bumping to 3.14 gives Go 1.16. pkg/cmd/extension/manager.go:8:2: package io/fs is not in GOROOT (/usr/lib/go/src/io/fs) exit status 1 build.go: building task `bin/gh` failed. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 22cd941..d04d2d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.13 +FROM alpine:3.14 RUN apk update && \ apk upgrade && \