adowu commited on
Commit
bd9c394
·
verified ·
1 Parent(s): 480c7e0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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