diff --git a/scripts/spcgeonode/letsencrypt/Dockerfile b/scripts/spcgeonode/letsencrypt/Dockerfile index 2504ce4db90..07008c169f8 100644 --- a/scripts/spcgeonode/letsencrypt/Dockerfile +++ b/scripts/spcgeonode/letsencrypt/Dockerfile @@ -1,7 +1,8 @@ FROM alpine:3.6 # 1-2. Install system dependencies -RUN apk add --no-cache certbot py-pip && pip install pyopenssl==16.0.0 +RUN apk add --no-cache certbot py-pip && pip install pyopenssl==16.0.0 # Need to downgrade PyOpenSSL to 16.0.0 to avoid conflicts and solve the cryptography error : https://github.com/plesk/letsencrypt-plesk/issues/117 + # Installing scripts ADD docker-entrypoint.sh /docker-entrypoint.sh