From ba1118bd928ae84081341bc9791df2d00482f97f Mon Sep 17 00:00:00 2001 From: Fi3w0 Date: Thu, 27 Aug 2026 19:32:53 +0200 Subject: [PATCH] fix(build): patch web image libraries --- build/web.Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/web.Dockerfile b/build/web.Dockerfile index 9a90876..2dab786 100644 --- a/build/web.Dockerfile +++ b/build/web.Dockerfile @@ -1,5 +1,8 @@ FROM nginxinc/nginx-unprivileged:1.31.4-alpine +USER root +RUN apk upgrade --no-cache libcrypto3 libssl3 + COPY build/web.conf.template /etc/nginx/templates/default.conf.template ARG WEB_ASSET_PATH=apps/web COPY ${WEB_ASSET_PATH}/index.html ${WEB_ASSET_PATH}/styles.css ${WEB_ASSET_PATH}/app.js /usr/share/nginx/html/