From a905ff70ae7e465255c3d36e12de96d391dfaf5f Mon Sep 17 00:00:00 2001 From: Akom Date: Mon, 3 Jul 2023 15:02:44 -0400 Subject: [PATCH] Downgrade pyOpenSSL to 23.1.1 With current version 23.2.0 the following error is observed: ``` An unexpected error occurred: ValueError: Invalid version. The only valid version for X509Req is 0. ``` --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 282715a..11eeb41 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,6 +18,7 @@ RUN apk add --no-cache --virtual .build-deps \ openssl-dev \ musl-dev \ libffi-dev \ + && pip install pyOpenSSL==23.1.1 \ && pip install urllib3==1.25.11 \ && pip install certbot-s3front \ && apk del .build-deps