From bf671d3b7b019c4f1186332f1aedfb45325013a9 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 29 Jan 2026 02:45:31 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE323-OPENSSL-15120873 - https://snyk.io/vuln/SNYK-ALPINE323-OPENSSL-15120874 - https://snyk.io/vuln/SNYK-ALPINE323-OPENSSL-15120875 - https://snyk.io/vuln/SNYK-ALPINE323-OPENSSL-15120876 - https://snyk.io/vuln/SNYK-ALPINE323-OPENSSL-15120877 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8535cbd..8c8e976 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.3 AS runtime LABEL description="Run container" WORKDIR /usr/bin