From 55306faa4ed53b815ae49e564af8cfb359d32ae2 Mon Sep 17 00:00:00 2001 From: Yedidya Schwartz <36074789+yedidyas@users.noreply.github.com> Date: Thu, 25 Sep 2025 23:37:07 +0300 Subject: [PATCH] Fix OpenSSL version mismatch in Alpine container (#120) * Fix OpenSSL version mismatch by pinning Alpine 3.20 and adding openssl package * Update README with fork explanation and OpenSSL fix details * Add reference to Alpine Linux OpenSSL issue * Restore original README for upstream PR --- 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