Spaces:
Sleeping
Sleeping
Add Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -4,7 +4,7 @@ WORKDIR /code
|
|
| 4 |
|
| 5 |
COPY ./requirements.txt /code/requirements.txt
|
| 6 |
|
| 7 |
-
RUN
|
| 8 |
RUN pip uninstall opencv-python -y
|
| 9 |
RUN pip install opencv-python-headless
|
| 10 |
COPY . .
|
|
|
|
| 4 |
|
| 5 |
COPY ./requirements.txt /code/requirements.txt
|
| 6 |
|
| 7 |
+
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 8 |
RUN pip uninstall opencv-python -y
|
| 9 |
RUN pip install opencv-python-headless
|
| 10 |
COPY . .
|