Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -15,7 +15,7 @@ RUN apt-get update && apt-get install -y \
|
|
| 15 |
|
| 16 |
COPY ./requirements.txt /code/requirements.txt
|
| 17 |
|
| 18 |
-
# Устанавливаем зависимости, за
|
| 19 |
RUN pip install --no-cache-dir --upgrade pip && \
|
| 20 |
pip install --no-cache-dir -r /code/requirements.txt && \
|
| 21 |
pip uninstall -y opencv-python && \
|
|
|
|
| 15 |
|
| 16 |
COPY ./requirements.txt /code/requirements.txt
|
| 17 |
|
| 18 |
+
# Устанавливаем зависимости, заменяем opencv-python на headless
|
| 19 |
RUN pip install --no-cache-dir --upgrade pip && \
|
| 20 |
pip install --no-cache-dir -r /code/requirements.txt && \
|
| 21 |
pip uninstall -y opencv-python && \
|