From 4d4d2d07c085b48a19c3e0d3f1bc3afd79043d94 Mon Sep 17 00:00:00 2001 From: Pavel Rozentsvet <111685920+PaulRoze@users.noreply.github.com> Date: Wed, 6 Aug 2025 16:32:16 +0300 Subject: [PATCH] fix(docker): upgrade Alpine to 3.22 to address CVE-2025-6965 in sqlite-libs Upgraded base image from Alpine 3.21 to 3.22 to avoid critical memory corruption vulnerability (CVE-2025-6965) in sqlite-libs@3.48.0-r2. dependency tree via nodejs -> sqlite-libs. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 74b32177..cdb9a48a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.21 +FROM alpine:3.22 WORKDIR /redis-commander