From 38067dea5bd837239b0d539b1744e26cd5343bb8 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 14 Nov 2023 15:27:25 +0100 Subject: [PATCH] fix: force upgrade of libcrypto3 and libssl3 --- Containerfile.multiarch | 1 + 1 file changed, 1 insertion(+) diff --git a/Containerfile.multiarch b/Containerfile.multiarch index 54f9279..d6b843b 100644 --- a/Containerfile.multiarch +++ b/Containerfile.multiarch @@ -32,6 +32,7 @@ RUN addgroup -g 101 -S nginx && \ adduser -S -D -H -u 101 -h /var/www -s /sbin/nologin -G nginx -g nginx nginx && \ apk --update add --virtual .build-deps curl && \ apk --update --no-cache add nginx ca-certificates && \ + apk --no-cache upgrade libcrypto3 libssl3 && \ rm -rf /var/www/localhost && \ rm -rf /etc/nginx/conf.d && \ curl -SsfL "https://gitea.rknet.org/container/container-library/releases/download/${CONTAINER_LIBRARY}/container-library.tar.gz" | tar xz -C / && \