Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +1 -8
Dockerfile
CHANGED
@@ -60,15 +60,8 @@ RUN pip install --upgrade pip && \
|
|
60 |
pip install cupy-cuda11x && \
|
61 |
pip install ffmpeg-python dlib
|
62 |
|
63 |
-
USER root
|
64 |
# Install basicsr
|
65 |
-
RUN cd basicsr &&
|
66 |
-
if [ ! -f "basicsr/VERSION" ]; then \
|
67 |
-
echo "1.3.2" > basicsr/VERSION; \
|
68 |
-
fi && \
|
69 |
-
python setup.py develop
|
70 |
-
|
71 |
-
USER user
|
72 |
|
73 |
# Command to run your application
|
74 |
CMD ["python", "app.py"]
|
|
|
60 |
pip install cupy-cuda11x && \
|
61 |
pip install ffmpeg-python dlib
|
62 |
|
|
|
63 |
# Install basicsr
|
64 |
+
RUN cd basicsr && python setup.py develop
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
|
66 |
# Command to run your application
|
67 |
CMD ["python", "app.py"]
|