From c0a99bc8fcd7bb0483b6f6bfdd2ad936fbf5731d Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Fri, 17 Apr 2026 11:59:23 +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-16032072 - 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 8535cbd..b2494a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN go mod download COPY . . RUN make build -FROM alpine:latest AS runtime +FROM alpine:3.23.4 AS runtime LABEL description="Run container" WORKDIR /usr/bin