From 135c71ca87c656411afc93249a5144fb56ddf875 Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Thu, 5 Mar 2020 11:53:07 +0100 Subject: [PATCH] build: Build image should use Go 1.13 for now --- Dockerfile.builder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.builder b/Dockerfile.builder index 6e7ed90ab..3f1094834 100644 --- a/Dockerfile.builder +++ b/Dockerfile.builder @@ -1,5 +1,5 @@ # We will grab the Go compiler from the latest Go image. -FROM golang as go +FROM golang:1.13 as go # Otherwise we base on the snapcraft container as that is by far the # most complex and tricky thing to get installed and working...