From e012a8a6d77f3eafb07ce025e04127985b859011 Mon Sep 17 00:00:00 2001 From: Jamie Curnow Date: Mon, 1 Nov 2021 09:12:26 +1000 Subject: [PATCH] Add tldextract as required by certbot --- docker/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index e449aa2..860d028 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -37,7 +37,8 @@ RUN if [ "$(getconf LONG_BIT)" = "32" ]; then \ pip3 install --no-cache-dir -U cryptography==3.3.2; \ fi -RUN pip install --no-cache-dir cffi certbot +RUN pip install --no-cache-dir cffi certbot \ + && pip install tldextract ############# # Nginx Builder