From 875ba247c7843453c1b45b8cd5fe4dc5126b7c07 Mon Sep 17 00:00:00 2001 From: Loris Date: Wed, 12 Mar 2025 19:49:16 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8e2a9b1ba..ce4863f8e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,8 @@ RUN apk add --no-cache brotli tini openssl mailcap libxml2 libxslt pcre && rm -r COPY requirements.txt ./requirements.txt # build and install uwsgi and necessary python packages -RUN apk add --no-cache -t build-dependencies build-base pcre-dev && pip install --no-cache "uwsgi~=2.0.0" \ +RUN apk add --no-cache -t build-dependencies build-base libffi-dev libxml2-dev libxslt-dev pcre-dev \ +&& pip install --no-cache "uwsgi~=2.0.0" \ && pip install --no-cache -r requirements.txt \ && apk del build-dependencies \ && rm -rf /root/.cache