From b433acdce62bd6325482331b0eeece98119ee6b4 Mon Sep 17 00:00:00 2001 From: proton <25139420+proton-ab@users.noreply.github.com> Date: Fri, 28 Feb 2020 21:52:54 +0100 Subject: [PATCH 1/2] Bump Dockerfile to golang:1.14 --- build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index 516b5041..834a0610 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.13 +FROM golang:1.14 # don't place it into $GOPATH/bin because Drone mounts $GOPATH as volume COPY golangci-lint /usr/bin/ From 5a12e35c078adc6d6cdd3e8c81a6048d5ef35999 Mon Sep 17 00:00:00 2001 From: proton <25139420+proton-ab@users.noreply.github.com> Date: Fri, 28 Feb 2020 21:53:39 +0100 Subject: [PATCH 2/2] Bump Dockerfile.alpine to golang:1.14-alpine --- build/Dockerfile.alpine | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile.alpine b/build/Dockerfile.alpine index 9973c39e..61067b14 100644 --- a/build/Dockerfile.alpine +++ b/build/Dockerfile.alpine @@ -1,4 +1,4 @@ -FROM golang:1.13-alpine +FROM golang:1.14-alpine # gcc is required to support cgo; # git and mercurial are needed most times for go get`, etc.