From f063e01ad8ca78426585f173c6230a1be46222ec Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Tue, 16 Jun 2026 15:18:25 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE324-OPENSSL-17304661 - https://snyk.io/vuln/SNYK-ALPINE324-OPENSSL-17304662 - https://snyk.io/vuln/SNYK-ALPINE324-OPENSSL-17304663 - https://snyk.io/vuln/SNYK-ALPINE324-OPENSSL-17304664 - https://snyk.io/vuln/SNYK-ALPINE324-OPENSSL-17304665 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8535cbd..798bfa0 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.24.1 AS runtime LABEL description="Run container" WORKDIR /usr/bin