Use go 1.11 for Dockerized Makefile targets

Previously, we used the Go 1.9 image for our dockerized targets in the
Makefile. The k8s project mandates Go 1.11 for k8s 1.13+
(https://github.com/kubernetes/community/blob/master/contributors/devel/development.md),
so there's no reason not to use Go 1.11 here.

I've verified all existing dockerized targets still work with go 1.11.
This commit is contained in:
mattjmcnaughton 2019-02-06 15:14:44 -05:00
parent cadd7bee53
commit e705dfb534
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
IMAGE_NAME=golang:1.9
IMAGE_NAME=golang:1.11
default: \
generate \