Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -10,8 +10,8 @@ RUN pip install --upgrade pip
|
|
10 |
# Klonowanie repozytorium Searx
|
11 |
RUN git clone https://github.com/searx/searx.git /code/searx-src
|
12 |
|
13 |
-
# Ręczna instalacja pakietu PyYAML
|
14 |
-
RUN pip install PyYAML==6.0
|
15 |
|
16 |
# Instalacja wymaganych pakietów
|
17 |
RUN pip install -r /code/searx-src/requirements.txt
|
|
|
10 |
# Klonowanie repozytorium Searx
|
11 |
RUN git clone https://github.com/searx/searx.git /code/searx-src
|
12 |
|
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
|