From 67fe35809f91d96dc8011137e96450494ccb1edd Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Fri, 14 Feb 2020 12:33:10 +0100 Subject: [PATCH] Use wheels for LE (#1074) --- letsencrypt/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/letsencrypt/Dockerfile b/letsencrypt/Dockerfile index 514cd90..69094fd 100755 --- a/letsencrypt/Dockerfile +++ b/letsencrypt/Dockerfile @@ -14,7 +14,9 @@ RUN apk add --no-cache --update \ libffi-dev \ musl-dev \ openssl-dev \ - && pip3 install --no-cache-dir certbot==${CERTBOT_VERSION} \ + && pip3 install --no-cache-dir --find-links \ + "https://wheels.home-assistant.io/alpine-$(cut -d '.' -f 1-2 < /etc/alpine-release)/${BUILD_ARCH}/" \ + certbot==${CERTBOT_VERSION} \ certbot-dns-cloudflare==${CERTBOT_VERSION} \ certbot-dns-cloudxns==${CERTBOT_VERSION} \ certbot-dns-digitalocean==${CERTBOT_VERSION} \