From f967f3626b49c2a791559f2c1a09863849cd15fa Mon Sep 17 00:00:00 2001 From: kolaente Date: Fri, 7 May 2021 12:28:54 +0200 Subject: [PATCH] Update go version --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a92ce23..de89146 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -FROM golang:1.13-alpine +FROM golang:1.16-alpine ENV GO111MODULE=on RUN apk --no-cache add build-base git && \ - go install github.com/magefile/mage && \ + go install github.com/magefile/mage@latest && \ mv /go/bin/mage /usr/local/go/bin # Since we're mounting the source we want to compile into /go, we will overlay the mage binary