From 403c38fbbe908453c64ce8a1158efc444bd11160 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 7 Jun 2022 08:50:13 +0200 Subject: [PATCH] deps: Build lxml from the source This might be a workaround for https://github.com/onelogin/python3-saml/issues/292 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c66c9191c..4d62dddab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -107,7 +107,7 @@ RUN \ && source $HOME/.cargo/env \ && pip install --no-cache-dir --upgrade $(grep -E '^(pip|wheel|setuptools)==' /usr/src/weblate/requirements.txt) \ && pip install --no-cache-dir $(grep -E '^pkgconfig==' /usr/src/weblate/requirements.txt) \ - && pip install --no-cache-dir --no-binary :all: $(grep ^cffi== /usr/src/weblate/requirements.txt) \ + && pip install --no-cache-dir --no-binary :all: $(grep ^(cffi|lxml)== /usr/src/weblate/requirements.txt) \ && case "$VERSION" in \ *+* ) \ sed -Ei '/^(translate-toolkit|aeidon)/D' /usr/src/weblate/requirements.txt; \