From 33656772085349c62f2738e829c46beb71e4f18f Mon Sep 17 00:00:00 2001 From: paulfantom Date: Thu, 20 Jun 2019 14:47:40 +0200 Subject: [PATCH] *: use proper golang image and always set go111module in build pipeline --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e5f53022..4980fb7e 100644 --- a/Makefile +++ b/Makefile @@ -5,10 +5,11 @@ ARCH?=amd64 ALL_ARCH=amd64 arm arm64 ppc64le s390x ML_PLATFORMS=linux/amd64,linux/arm,linux/arm64,linux/ppc64le,linux/s390x OUT_DIR?=./_output -VENDOR_DOCKERIZED=0 VERSION?=latest -GOIMAGE=golang:1.10 +GOIMAGE=golang:1.12 +GO111MODULE=on +export GO111MODULE ifeq ($(ARCH),amd64) BASEIMAGE?=busybox