From fc650ebf1abf973301e4913703a714069f2400b8 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 23 Oct 2021 19:39:50 +0000 Subject: [PATCH] chore(deps): update alpine docker tag to v3.14.2 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 813adf3..5e184ea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN go mod download COPY . /app/ RUN CGO_ENABLED=0 go build -a -tags "osusergo netgo" --ldflags "-linkmode external -extldflags '-static'" -o build/release-notary . -FROM alpine:3.13.2 +FROM alpine:3.14.2 RUN apk add --no-cache --virtual=.run-deps ca-certificates git &&\ mkdir /app