diff options
author | Alexandre Flament <alex@al-f.net> | 2021-11-05 19:57:55 +0100 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2021-11-05 20:05:26 +0100 |
commit | dc39f9c960e0eae6392c3d91f0210b0759b6a6c8 (patch) | |
tree | 2e72e7185e91aa9af3ea03640cda2e9209546d81 | |
parent | 082d55e6c5c2f576396d4790179e13ad627f7253 (diff) | |
download | searxng-dc39f9c960e0eae6392c3d91f0210b0759b6a6c8.tar.gz searxng-dc39f9c960e0eae6392c3d91f0210b0759b6a6c8.zip |
[fix] Dockerfile image
ignore existing wheels, rebuild all of them
fix an issue the lxml wheel for the muslc
-rw-r--r-- | Dockerfile | 4 |
1 files 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 |