From 478e1d64953c7975017ee9ff0657d837dfe4316f Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Wed, 12 Feb 2025 01:20:03 +0000 Subject: [PATCH] fix: hostplumber/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE316-BUSYBOX-6913410 - https://snyk.io/vuln/SNYK-ALPINE316-BUSYBOX-6913410 --- hostplumber/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hostplumber/Dockerfile b/hostplumber/Dockerfile index d5f0980f..ebdb771d 100644 --- a/hostplumber/Dockerfile +++ b/hostplumber/Dockerfile @@ -21,7 +21,7 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o manager main.go # Use distroless as minimal base image to package the manager binary # Refer to https://github.com/GoogleContainerTools/distroless for more details #FROM gcr.io/distroless/static:nonroot -FROM alpine:3.16 +FROM alpine:3.19.6 WORKDIR / RUN apk update && apk upgrade