Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -13,6 +13,9 @@ RUN git clone https://github.com/searx/searx.git /code/searx-src
|
|
13 |
# Ręczna instalacja pakietu PyYAML z pominięciem izolacji budowania
|
14 |
RUN pip install --no-build-isolation PyYAML==6.0
|
15 |
|
|
|
|
|
|
|
16 |
# Instalacja wymaganych pakietów
|
17 |
RUN pip install -r /code/searx-src/requirements.txt
|
18 |
|
|
|
13 |
# Ręczna instalacja pakietu PyYAML z pominięciem izolacji budowania
|
14 |
RUN pip install --no-build-isolation PyYAML==6.0
|
15 |
|
16 |
+
# Instalacja pakietu lxml z prekompilowanego koła
|
17 |
+
RUN pip install --pre --no-build-isolation lxml==4.9.2
|
18 |
+
|
19 |
# Instalacja wymaganych pakietów
|
20 |
RUN pip install -r /code/searx-src/requirements.txt
|
21 |
|