From 4b2e066fc8df6f08286424da8c65931a389fdf25 Mon Sep 17 00:00:00 2001 From: Andre Azzolini Date: Tue, 28 Nov 2023 09:21:10 -0700 Subject: [PATCH] chore: update openssl lib --- docker/alpine | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker/alpine b/docker/alpine index 575b1cd7..f75c71a5 100644 --- a/docker/alpine +++ b/docker/alpine @@ -1,4 +1,8 @@ FROM alpine RUN apk add --no-cache tini + +# Update OpenSSL to address CVE because `alpine` isn't updated yet +RUN apk update && apk upgrade --no-cache libcrypto3 libssl3 + COPY doppler /bin/doppler ENTRYPOINT ["/sbin/tini", "--", "/bin/doppler"]