From d77c6f2eba617ec51b3befa2a3f115f777e37774 Mon Sep 17 00:00:00 2001 From: PavelYadrov Date: Thu, 9 Apr 2026 16:24:32 +0300 Subject: [PATCH] fix: add libcrypto3 and libssl3 to Dockerfile dependencies --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1e656f4..6890505 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,7 @@ RUN set -x && apk upgrade --no-cache --available RUN echo "https://dl-cdn.alpinelinux.org/alpine/edge/main" > /etc/apk/repositories \ && echo "https://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories \ && apk add --update --upgrade --no-cache \ - curl libcurl jq + curl libcurl jq libcrypto3 libssl3 USER 1001 ENTRYPOINT [ "kubectl" ]