From e77b384e5aeed87e2f56c1bd99e92a000d64c311 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 8 Aug 2021 07:14:23 +0000 Subject: [PATCH] fix: Dockerfile.app to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE310-APKTOOLS-1534688 --- Dockerfile.app | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.app b/Dockerfile.app index f80ca177..89a99070 100644 --- a/Dockerfile.app +++ b/Dockerfile.app @@ -16,7 +16,7 @@ ADD . . RUN go build -o bin/server main.go -FROM alpine:3.10 +FROM alpine:3 WORKDIR /app COPY --from=build /app/src/bin/ /app/