From 01a3223a135e12a161e591ef0f7a84f7e105a224 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 14 Nov 2023 15:27:21 +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 c0bc028..4ab2a7d 100644 --- a/Containerfile.multiarch +++ b/Containerfile.multiarch @@ -34,6 +34,7 @@ ENV YAMLLINT_VERSION="${YAMLLINT_VERSION:-1.32.0}" ENV KUBECONFORM_VERSION="${KUBECONFORM_VERSION:-v0.6.3}" RUN apk --update add --no-cache python3 py3-pip curl make tar git bash && \ + 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}" && \ curl -SsfL -o /usr/local/bin/url-parser "https://github.com/thegeeklab/url-parser/releases/download/${URL_PARSER_VERSION}/url-parser-${TARGETOS}-${TARGETARCH}${TARGETVARIANT//v/-}" && \ curl -SsfL -o /usr/local/bin/openapi2jsonschema "https://raw.githubusercontent.com/yannh/kubeconform/${KUBECONFORM_VERSION}/scripts/openapi2jsonschema.py" && \