From 2a8dbb280ee1fe996cb5ebbc095b7494c8080310 Mon Sep 17 00:00:00 2001 From: kev Date: Fri, 12 Nov 2021 16:37:20 +0800 Subject: [PATCH] fix urlwatch lxml.etree (FIX #191) --- urlwatch/Dockerfile | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/urlwatch/Dockerfile b/urlwatch/Dockerfile index fac6d4f..d38ec7e 100644 --- a/urlwatch/Dockerfile +++ b/urlwatch/Dockerfile @@ -20,16 +20,17 @@ RUN set -xe \ python3 \ python3-dev \ && curl -sSL https://bootstrap.pypa.io/get-pip.py | python3 \ - && pip3 install appdirs \ - cssselect \ - keyring \ - keyrings.alt \ - lxml \ - minidb \ - pyyaml \ - requests \ - chump \ - urlwatch \ + && pip3 install --no-binary lxml \ + appdirs \ + cssselect \ + keyring \ + keyrings.alt \ + lxml \ + minidb \ + pyyaml \ + requests \ + chump \ + urlwatch \ && apk del build-base \ libffi-dev \ libxml2-dev \