From a8f6490d9ff344701e25fdfa17ff170a5c3b106d Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Fri, 17 Apr 2026 20:31:34 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE323-ZLIB-15435529 - https://snyk.io/vuln/SNYK-ALPINE323-MUSL-16008603 - https://snyk.io/vuln/SNYK-ALPINE323-MUSL-16008603 - https://snyk.io/vuln/SNYK-ALPINE323-OPENSSL-15993253 - https://snyk.io/vuln/SNYK-ALPINE323-OPENSSL-15993258 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 57efe1f..2919d7c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ COPY *.go . RUN CGO_ENABLED=0 GOOS=linux go build -a -o /go/bin/scout . ######## Start a new stage from scratch ####### -FROM alpine:latest +FROM alpine:3.23.4 RUN apk --no-cache add ca-certificates tzdata COPY --from=builder /go/bin/scout /usr/local/bin