From dc39f9c960e0eae6392c3d91f0210b0759b6a6c8 Mon Sep 17 00:00:00 2001 From: Alexandre Flament Date: Fri, 5 Nov 2021 19:57:55 +0100 Subject: [PATCH] [fix] Dockerfile image ignore existing wheels, rebuild all of them fix an issue the lxml wheel for the muslc --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9d9290493..2d28a1c7c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,8 +47,8 @@ RUN apk upgrade --no-cache \ uwsgi \ uwsgi-python3 \ brotli \ - && pip3 install --upgrade pip \ - && pip3 install --no-cache -r requirements.txt \ + && pip3 install --upgrade pip wheel setuptools \ + && pip3 install --no-cache --no-binary :all: -r requirements.txt \ && apk del build-dependencies \ && rm -rf /root/.cache