Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -6,7 +6,7 @@ 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 /code/venv/bin/activate
|
10 |
# Zainstaluj wymagane pakiety
|
11 |
RUN pip install -r /code/searx-src/requirements.txt
|
12 |
|
|
|
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 /code/searx-src/venv/bin/activate
|
10 |
# Zainstaluj wymagane pakiety
|
11 |
RUN pip install -r /code/searx-src/requirements.txt
|
12 |
|