Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -70,8 +70,8 @@ RUN pip install --no-cache-dir gradio
|
|
70 |
# Install Cython (needed for some dependencies)
|
71 |
RUN pip install --no-cache-dir "cython<3.0.0"
|
72 |
|
73 |
-
# Install basicsr
|
74 |
-
RUN python basicsr/setup.py develop
|
75 |
|
76 |
# Install additional packages
|
77 |
RUN pip install --no-cache-dir ffmpeg-python dlib
|
|
|
70 |
# Install Cython (needed for some dependencies)
|
71 |
RUN pip install --no-cache-dir "cython<3.0.0"
|
72 |
|
73 |
+
# Install basicsr with selective warnings
|
74 |
+
RUN BASICSR_EXT=True CFLAGS="-Wno-deprecated-declarations" python basicsr/setup.py develop
|
75 |
|
76 |
# Install additional packages
|
77 |
RUN pip install --no-cache-dir ffmpeg-python dlib
|