Update Makefile

This commit is contained in:
jindijamie 2021-04-12 14:32:54 -07:00 committed by GitHub
parent f44116ce49
commit d1b205c9fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,19 +67,19 @@ GOARM?=7
TEMP_DIR:=$(shell mktemp -d)
ifeq ($(ARCH),amd64)
BASEIMAGE?=k8s.gcr.io/build-image/debian-base:buster-v1.5.0
BASEIMAGE?=k8s.gcr.io/build-image/debian-base:buster-v1.6.0
endif
ifeq ($(ARCH),arm)
BASEIMAGE?=k8s.gcr.io/build-image/debian-base-arm:buster-v1.5.0
BASEIMAGE?=k8s.gcr.io/build-image/debian-base-arm:buster-v1.6.0
endif
ifeq ($(ARCH),arm64)
BASEIMAGE?=k8s.gcr.io/build-image/debian-base-arm64:buster-v1.5.0
BASEIMAGE?=k8s.gcr.io/build-image/debian-base-arm64:buster-v1.6.0
endif
ifeq ($(ARCH),ppc64le)
BASEIMAGE?=k8s.gcr.io/build-image/debian-base-ppc64le:buster-v1.5.0
BASEIMAGE?=k8s.gcr.io/build-image/debian-base-ppc64le:buster-v1.6.0
endif
ifeq ($(ARCH),s390x)
BASEIMAGE?=k8s.gcr.io/build-image/debian-base-s390x:buster-v1.5.0
BASEIMAGE?=k8s.gcr.io/build-image/debian-base-s390x:buster-v1.6.0
endif
RUNNERIMAGE?=gcr.io/distroless/static:latest