From 385e093fb26db04c44ee242e147b88498c8d4e3d Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 9 Jan 2025 06:11:41 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE316-BUSYBOX-6913410 - https://snyk.io/vuln/SNYK-ALPINE316-BUSYBOX-6913410 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7ae75da..aa96062 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN go get -u github.com/mattn/go-colorable && \ cd /app && CGO_ENABLED=0 go build . # Application stage -FROM alpine:3.16 +FROM alpine:3.21.1 WORKDIR /app