diff options
author | Markus Heiser <markus.heiser@darmarIT.de> | 2022-12-12 08:13:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-12 08:13:17 +0100 |
commit | 966e9c3c5d435c473521c332e4ed464d2ff4187e (patch) | |
tree | 2d698ac11b6dd96ba4a88984b0919cbecbe52ef9 /Dockerfile | |
parent | abb33bd7ddf913fd98826584ed8b687889d3b346 (diff) | |
parent | ed901ab18edddcfd566ac37ddb1b429969ccc2ad (diff) | |
download | searxng-966e9c3c5d435c473521c332e4ed464d2ff4187e.tar.gz searxng-966e9c3c5d435c473521c332e4ed464d2ff4187e.zip |
Merge pull request #1969 from ArtikusHG/master
Add language autodetect plugin
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile index 66f58395d..ece20c86b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,6 +36,7 @@ RUN apk add --no-cache -t build-dependencies \ su-exec \ python3 \ py3-pip \ + py3-numpy \ libxml2 \ libxslt \ openssl \ @@ -43,6 +44,8 @@ RUN apk add --no-cache -t build-dependencies \ uwsgi \ uwsgi-python3 \ brotli \ + && pip3 install --no-cache setuptools wheel \ + && sed -i s/fasttext-wheel/fasttext/ requirements.txt \ && pip3 install --no-cache -r requirements.txt \ && apk del build-dependencies \ && rm -rf /root/.cache |