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
This commit is contained in:
Yedidya Schwartz 2025-09-25 23:37:07 +03:00 committed by GitHub
parent 7c1bd869f3
commit 55306faa4e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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