From 343bb99bff5f773818e776094133d5fbef1f8940 Mon Sep 17 00:00:00 2001 From: bsodfather Date: Mon, 31 Aug 2026 23:06:16 +0300 Subject: [PATCH] fix(security): refresh community UI runtime --- apps/ui/Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/ui/Dockerfile b/apps/ui/Dockerfile index 4a3a2d1..b5279a5 100644 --- a/apps/ui/Dockerfile +++ b/apps/ui/Dockerfile @@ -10,7 +10,11 @@ COPY crank-community.png ./crank-community.png RUN npm run build -FROM nginx:1.27-alpine +FROM nginx:1.30.4-alpine3.24-slim + +RUN apk add --no-cache --upgrade \ + 'libcrypto3>=3.5.8-r0' \ + 'libssl3>=3.5.8-r0' COPY apps/ui/nginx.conf /etc/nginx/conf.d/default.conf COPY --from=build /app/dist /usr/share/nginx/html