From 3c8624afccab0179829f1d4c7014119d1a10353a Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Wed, 23 Jul 2025 04:44:23 +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 - https://snyk.io/vuln/SNYK-ALPINE316-MUSL-8720632 - https://snyk.io/vuln/SNYK-ALPINE316-MUSL-8720632 --- hostplumber/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hostplumber/Dockerfile b/hostplumber/Dockerfile index d5f0980f..b0a4f750 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.22.1 WORKDIR / RUN apk update && apk upgrade