Merge pull request #336 from justaugustus/image

Makefile: Update base and build images
This commit is contained in:
Kubernetes Prow Robot 2021-02-12 11:01:59 -08:00 committed by GitHub
commit 45852714fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -36,12 +36,12 @@ ALL_PLATFORMS := linux/amd64 linux/arm linux/arm64 linux/ppc64le linux/s390x
OS := $(if $(GOOS),$(GOOS),$(shell go env GOOS))
ARCH := $(if $(GOARCH),$(GOARCH),$(shell go env GOARCH))
BASEIMAGE ?= k8s.gcr.io/debian-base:v2.0.0
BASEIMAGE ?= k8s.gcr.io/build-image/debian-base:buster-v1.4.0
IMAGE := $(REGISTRY)/$(BIN)
TAG := $(VERSION)__$(OS)_$(ARCH)
BUILD_IMAGE ?= golang:1.14-alpine
BUILD_IMAGE ?= golang:1.15-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.