From 3dc2cd6dc21b0f626598952fcf8bc4d4b3a9f9e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Gorej?= Date: Mon, 10 Mar 2025 11:05:46 +0100 Subject: [PATCH] fix(docker): fix security issues CVE-2024-56171, CVE-2025-24928 (#10351) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6ec86efe8ab..33812f1d0f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ LABEL maintainer="vladimir.gorej@gmail.com" \ org.opencontainers.image.description="SwaggerUI Docker image" \ org.opencontainers.image.licenses="Apache-2.0" -RUN apk add --update-cache --no-cache "nodejs" +RUN apk add --update-cache --no-cache "nodejs" "libxml2>=2.13.4-r4" LABEL maintainer="char0n"