From f7d12606a479c52acc3a364ea323f1c32a77b984 Mon Sep 17 00:00:00 2001 From: Wolfgang Welz <welzwo@gmail.com> Date: Mon, 9 Dec 2019 14:17:54 +0100 Subject: [PATCH] Switch docker build to go 1.13 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 146a16de..df77e135 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # we need to use alpine to build since cgo is required -FROM golang:1.12-alpine AS build +FROM golang:1.13-alpine AS build RUN apk add --no-cache git gcc g++ # Set the current Working Directory inside the container -- GitLab