Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -8
Dockerfile
CHANGED
@@ -52,14 +52,8 @@ RUN wget https://huggingface.co/camenduru/dreamtalk/resolve/main/damo/dreamtalk/
|
|
52 |
RUN wget https://huggingface.co/camenduru/dreamtalk/resolve/main/damo/dreamtalk/checkpoints/renderer.pt -O $HOME/app/checkpoints/renderer.pt
|
53 |
|
54 |
# Upgrade pip & install dependencies
|
55 |
-
RUN pip install
|
56 |
-
RUN pip install --no-cache-dir
|
57 |
-
|
58 |
-
# Install CMake first
|
59 |
-
RUN pip install cmake
|
60 |
-
|
61 |
-
# Install dlib with CUDA support (force source compilation)
|
62 |
-
#RUN pip install --no-cache-dir dlib -vvv
|
63 |
|
64 |
# Copy application file
|
65 |
COPY app.py .
|
|
|
52 |
RUN wget https://huggingface.co/camenduru/dreamtalk/resolve/main/damo/dreamtalk/checkpoints/renderer.pt -O $HOME/app/checkpoints/renderer.pt
|
53 |
|
54 |
# Upgrade pip & install dependencies
|
55 |
+
RUN pip install -r requirements.txt
|
56 |
+
RUN pip install --no-cache-dir "moviepy<2" gradio
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
|
58 |
# Copy application file
|
59 |
COPY app.py .
|