Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -3,7 +3,7 @@ FROM python:3.12
|
|
3 |
|
4 |
# Ustaw katalog roboczy
|
5 |
WORKDIR /code
|
6 |
-
RUN
|
7 |
# Uruchom polecenie, aby sklonować repozytorium Searx
|
8 |
RUN git clone https://github.com/searx/searx.git /code/searx-src
|
9 |
RUN python -m venv venv && source venv/bin/activate
|
|
|
3 |
|
4 |
# Ustaw katalog roboczy
|
5 |
WORKDIR /code
|
6 |
+
RUN pip install --upgrade pip
|
7 |
# Uruchom polecenie, aby sklonować repozytorium Searx
|
8 |
RUN git clone https://github.com/searx/searx.git /code/searx-src
|
9 |
RUN python -m venv venv && source venv/bin/activate
|