From b3a261c67392743621fe7e7f10954a101ba2becd Mon Sep 17 00:00:00 2001 From: Jingfang Liu Date: Thu, 10 Mar 2022 16:18:56 -0800 Subject: [PATCH] update the base image to fix vulnerabilities It fixes the critical vulnerabilities: CVE-2021-45960 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7966447..905b1c0 100644 --- a/Makefile +++ b/Makefile @@ -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)