pjpjq commited on
Commit
6e449b8
·
verified ·
1 Parent(s): 949382a

Fix build: add typing_extensions for searxng editable install

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -54,7 +54,7 @@ RUN git clone "https://github.com/searxng/searxng" \
54
  "/usr/local/searxng/searxng-src"
55
 
56
  RUN python3 -m venv "/usr/local/searxng/searx-pyenv"
57
- RUN "/usr/local/searxng/searx-pyenv/bin/pip" install --upgrade pip setuptools wheel pyyaml msgspec
58
  RUN cd "/usr/local/searxng/searxng-src" && \
59
  "/usr/local/searxng/searx-pyenv/bin/pip" install --use-pep517 --no-build-isolation -e .
60
 
 
54
  "/usr/local/searxng/searxng-src"
55
 
56
  RUN python3 -m venv "/usr/local/searxng/searx-pyenv"
57
+ RUN "/usr/local/searxng/searx-pyenv/bin/pip" install --upgrade pip setuptools wheel pyyaml msgspec typing_extensions
58
  RUN cd "/usr/local/searxng/searxng-src" && \
59
  "/usr/local/searxng/searx-pyenv/bin/pip" install --use-pep517 --no-build-isolation -e .
60