From 0b54777dc7a664019890359717c5b79a7190323a Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Fri, 21 Jun 2024 20:35:00 +0000 Subject: [PATCH] fix: docs/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE310-APKTOOLS-1534688 Signed-off-by: khanhtc1202 --- docs/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Dockerfile b/docs/Dockerfile index fc6f561318..5b4b3ab9cc 100644 --- a/docs/Dockerfile +++ b/docs/Dockerfile @@ -2,7 +2,7 @@ FROM golang:1.22.4-alpine3.20 AS builder COPY main.go . RUN go build -o /server main.go -FROM alpine:3.10 +FROM alpine:3.17 RUN apk --no-cache add ca-certificates COPY --from=builder /server ./