diff --git a/Containerfile.multiarch b/Containerfile.multiarch index 164b7c2..42b3dc9 100644 --- a/Containerfile.multiarch +++ b/Containerfile.multiarch @@ -34,6 +34,7 @@ ENV CONTAINER_LIBRARY="${CONTAINER_LIBRARY:-v0.1.3}" RUN addgroup -g 101 -S app && \ adduser -S -D -H -u 101 -h /app -s /sbin/nologin -G app -g app app && \ apk --update add --virtual .build-deps curl && \ + apk --no-cache upgrade libcrypto3 libssl3 && \ curl -SsfL "https://gitea.rknet.org/container/container-library/releases/download/${CONTAINER_LIBRARY}/container-library.tar.gz" | tar xz -C / && \ curl -SsfL -o /usr/local/bin/gomplate "https://github.com/hairyhenderson/gomplate/releases/download/${GOMPLATE_VERSION}/gomplate_${TARGETOS}-${TARGETARCH}${TARGETVARIANT}" && \ curl -SsfL -o /usr/local/bin/supercronic "https://github.com/aptible/supercronic/releases/download/${SUPERCRONIC_VERSION}/supercronic-${TARGETOS}-${TARGETARCH}" && \