fffiloni commited on
Commit
823d42e
·
verified ·
1 Parent(s): 76a4302

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 --upgrade pip setuptools wheel
56
- RUN pip install --no-cache-dir urllib3 transformers yacs scipy scikit-image scikit-learn PyYAML Pillow "numpy<2" opencv-python imageio ffmpeg-python av "moviepy<2" gradio
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 .