From 4537d291115eae2f0d4e446da9bf9cdd44d1333e Mon Sep 17 00:00:00 2001 From: alexhwcheng <121998721+alexhwcheng@users.noreply.github.com> Date: Thu, 4 Apr 2024 19:04:56 -0700 Subject: [PATCH] Update alpine to 3.18.6 to address openssl vulnerability (#531) Signed-off-by: alexhwcheng <121998721+alexhwcheng@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b2e23f59..6c06460b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,6 @@ COPY script script RUN CGO_ENABLED=0 GOOS=linux go build -o /go/bin/ratelimit -ldflags="-w -s" -v github.com/envoyproxy/ratelimit/src/service_cmd -FROM alpine:3.18.5@sha256:34871e7290500828b39e22294660bee86d966bc0017544e848dd9a255cdf59e0 AS final +FROM alpine:3.18.6@sha256:11e21d7b981a59554b3f822c49f6e9f57b6068bb74f49c4cd5cc4c663c7e5160 AS final RUN apk --no-cache add ca-certificates && apk --no-cache update COPY --from=build /go/bin/ratelimit /bin/ratelimit