From 35626cf8c328b1889508d3b5ebb8fdb388ac963c Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 17 Mar 2022 12:29:23 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE314-OPENSSL-2426333 - https://snyk.io/vuln/SNYK-ALPINE314-OPENSSL-2426333 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 943b004..8bd3737 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,6 @@ WORKDIR /app COPY . . RUN go build -o gitoops ./cmd/ -FROM alpine:3.14 +FROM alpine:3.15 COPY --from=0 /app/gitoops /usr/local/bin/ ENTRYPOINT ["/usr/local/bin/gitoops"]