fix: add typing_extensions to Dockerfile to resolve build error

Add typing_extensions to the list of installed packages.
This commit is contained in:
Marex
2026-03-08 22:31:22 +01:00
committed by GitHub
parent 86274326e9
commit 80d4f23765

View File

@@ -54,7 +54,7 @@ RUN git clone "https://github.com/searxng/searxng" \
"/usr/local/searxng/searxng-src" "/usr/local/searxng/searxng-src"
RUN python3 -m venv "/usr/local/searxng/searx-pyenv" RUN python3 -m venv "/usr/local/searxng/searx-pyenv"
RUN "/usr/local/searxng/searx-pyenv/bin/pip" install --upgrade pip setuptools wheel pyyaml msgspec RUN "/usr/local/searxng/searx-pyenv/bin/pip" install --upgrade pip setuptools wheel pyyaml msgspec typing_extensions
RUN cd "/usr/local/searxng/searxng-src" && \ RUN cd "/usr/local/searxng/searxng-src" && \
"/usr/local/searxng/searx-pyenv/bin/pip" install --use-pep517 --no-build-isolation -e . "/usr/local/searxng/searx-pyenv/bin/pip" install --use-pep517 --no-build-isolation -e .