From 47ab617bfeb1655af4b3a47c76067fd8f35c8108 Mon Sep 17 00:00:00 2001 From: Jean-Laurent de Morlhon Date: Thu, 5 Sep 2024 15:28:16 +0200 Subject: [PATCH] Still trying to fix openssl and expat cves Signed-off-by: Jean-Laurent de Morlhon --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8c717ad..f38e596 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,8 @@ FROM nginxinc/nginx-unprivileged:1.27.1-alpine USER root RUN apk update && \ - apk add --no-cache openssl=3.3.2-r0 expat=2.6.3-r0 && \ + apk add --no-cache openssl=3.3.2-r0 && \ + apk add --no-cache libexpat=2.6.3-r0 && \ rm -rf /var/cache/apk/* USER nginx COPY static /usr/share/nginx/html