update the base image to fix vulnerabilities

It fixes the critical vulnerabilities: CVE-2021-45960
This commit is contained in:
Jingfang Liu 2022-03-10 16:18:56 -08:00 committed by Tim Hockin
parent 9cb050efc6
commit b3a261c673
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ 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/build-image/debian-base:buster-v1.8.0
BASEIMAGE ?= k8s.gcr.io/build-image/debian-base:buster-v1.10.0
IMAGE := $(REGISTRY)/$(BIN)
TAG := $(VERSION)__$(OS)_$(ARCH)