From abb59b0bdbe9f47bb247b9b181063768adc674ed Mon Sep 17 00:00:00 2001 From: Charly Fontaine Date: Tue, 21 Jun 2022 17:24:57 -0400 Subject: [PATCH] Update base image to fix CVEs (#523) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 98ab149cd..06deac4b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ ARG GOARCH RUN CGO_ENABLED=0 GOOS=linux GOARCH=${GOARCH} GO111MODULE=on go build -a -ldflags "${LDFLAGS}" -o manager main.go RUN CGO_ENABLED=0 GOOS=linux GOARCH=${GOARCH} GO111MODULE=on go build -a -ldflags "${LDFLAGS}" -o helpers cmd/helpers/main.go -FROM registry.access.redhat.com/ubi8/ubi-minimal:latest +FROM registry.access.redhat.com/ubi9/ubi-minimal:latest LABEL name="datadog/operator" LABEL vendor="Datadog Inc."