From f650c3a85955c37d7824353f311ac4276dabc7d1 Mon Sep 17 00:00:00 2001 From: yedidyas Date: Thu, 25 Sep 2025 12:56:41 +0300 Subject: [PATCH] Fix OpenSSL version mismatch by pinning Alpine 3.20 and adding openssl package --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index db90a79..7d75a48 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -FROM alpine:latest +FROM alpine:3.20 -RUN apk add --no-cache git git-lfs openssh-client +RUN apk update && apk add --no-cache git git-lfs openssh-client openssl COPY entrypoint.sh /entrypoint.sh