From 32508393686187abcbad0f6949a601d4984e0ae4 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 1 Feb 2026 10:01:17 +0000 Subject: [PATCH] fix: examples/crd-client/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE313-OPENSSL-2426334 - https://snyk.io/vuln/SNYK-ALPINE313-OPENSSL-2426334 - https://snyk.io/vuln/SNYK-ALPINE313-APKTOOLS-1533754 - https://snyk.io/vuln/SNYK-ALPINE313-OPENSSL-1569448 - https://snyk.io/vuln/SNYK-ALPINE313-OPENSSL-1569448 --- examples/crd-client/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/crd-client/Dockerfile b/examples/crd-client/Dockerfile index 3a5e518933..ac7116376b 100644 --- a/examples/crd-client/Dockerfile +++ b/examples/crd-client/Dockerfile @@ -21,7 +21,7 @@ RUN go mod init && go mod tidy RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o client . # Create the final image that will run the webhook server for FleetAutoscaler webhook policy -FROM alpine:3.13.1 +FROM alpine:3.23.3 RUN adduser -D -u 1000 client COPY --from=builder /go/src/crd-client \