From 24d359a867983d89db9b7a4094a25dc746ecfc22 Mon Sep 17 00:00:00 2001 From: majinghe <42570491+majinghe@users.noreply.github.com> Date: Tue, 24 Mar 2026 11:36:40 +0800 Subject: [PATCH] fix: CVE-2026-22184 fix in docker image (#2276) Co-authored-by: heihutu --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cecd2bc29..c9f765ec5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -72,7 +72,8 @@ LABEL name="RustFS" \ url="https://rustfs.com" \ license="Apache-2.0" -RUN apk add --no-cache ca-certificates coreutils curl +RUN apk update && \ + apk add --no-cache ca-certificates coreutils curl "zlib>=1.3.2-r0" COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ COPY --from=build /build/rustfs /usr/bin/rustfs