Build updates

Move to go 1.14

Explicitly apt-get update when building
This commit is contained in:
Tim Hockin 2020-05-01 14:19:30 -07:00
parent e001cde4ac
commit d507f43105
2 changed files with 2 additions and 1 deletions

View File

@ -15,6 +15,7 @@
FROM {ARG_FROM}
RUN apt-get update \
&& apt-get -y upgrade \
&& apt-get -y install \
ca-certificates \
coreutils \

View File

@ -41,7 +41,7 @@ BASEIMAGE ?= k8s.gcr.io/debian-base:v2.0.0
IMAGE := $(REGISTRY)/$(BIN)
TAG := $(VERSION)__$(OS)_$(ARCH)
BUILD_IMAGE ?= golang:1.13-alpine
BUILD_IMAGE ?= golang:1.14-alpine
# If you want to build all binaries, see the 'all-build' rule.
# If you want to build all containers, see the 'all-container' rule.