From 1b046af5d13f31191fd25fca1475bda10315acb3 Mon Sep 17 00:00:00 2001 From: David Stoline Date: Wed, 30 Oct 2024 16:37:56 -0400 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities (#239) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE319-BUSYBOX-6913413 - https://snyk.io/vuln/SNYK-ALPINE319-BUSYBOX-6928845 - https://snyk.io/vuln/SNYK-ALPINE319-BUSYBOX-6928846 - https://snyk.io/vuln/SNYK-ALPINE319-BUSYBOX-6928846 - https://snyk.io/vuln/SNYK-ALPINE319-BUSYBOX-6928847 Co-authored-by: snyk-bot --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e2dff202..a98114af 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ COPY sentry ./sentry RUN go mod download RUN go build -a -ldflags '-extldflags "-static"' -o /bin/linode-cloud-controller-manager-linux /linode -FROM alpine:3.19.1 +FROM alpine:3.20.3 RUN apk add --update --no-cache ca-certificates LABEL maintainers="Linode" LABEL description="Linode Cloud Controller Manager"