From 19ed3c2437cd7f395291b77bb2ea90f17fcb4ab8 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 14 Nov 2023 15:27:26 +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 3cd8303..6bc792a 100644 --- a/Containerfile.multiarch +++ b/Containerfile.multiarch @@ -19,6 +19,7 @@ ENV GOMPLATE_VERSION="${GOMPLATE_VERSION:-v3.11.5}" RUN addgroup -g 101 -S caddy && \ adduser -S -D -H -u 101 -h /var/www -s /sbin/nologin -G caddy -g caddy caddy && \ apk --update add --virtual .build-deps curl && \ + apk --no-cache upgrade libcrypto3 libssl3 && \ curl -SsfL -o /usr/local/bin/gomplate "https://github.com/hairyhenderson/gomplate/releases/download/${GOMPLATE_VERSION}/gomplate_${TARGETOS}-${TARGETARCH}${TARGETVARIANT}" && \ chmod 755 /usr/local/bin/gomplate && \ chown -R caddy:caddy /config /data /etc/caddy /srv && \