From ea875f7288957ab526b1c0308e4bcff2a96867b3 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Fri, 17 Apr 2026 12:06:16 +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-MUSL-16032072 - https://snyk.io/vuln/SNYK-ALPINE323-MUSL-16032072 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ec438ec..8869584 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ COPY . /build WORKDIR /build RUN go build -ldflags "-s" github.com/paralus/prompt -FROM alpine:latest as runtime +FROM alpine:3.23.4 as runtime LABEL description="Run container" COPY --from=build /build/prompt /usr/bin/prompt