pragnakalp commited on
Commit
7ff4661
·
verified ·
1 Parent(s): 056df7b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -1
Dockerfile CHANGED
@@ -32,7 +32,12 @@ RUN apt-get install -y ffmpeg libavcodec-dev libavformat-dev libavdevice-dev lib
32
  RUN apt-add-repository -y universe
33
 
34
  RUN python3 -m venv /content/venv
35
- RUN /content/venv/bin/pip install dlib==19.24.2 --break-system-packages
 
 
 
 
 
36
 
37
  RUN /content/venv/bin/pip install git+https://github.com/One-sixth/fairseq.git
38
  # RUN /content/venv/bin/pip install setuptools pandas scipy matplotlib torch torchvision ffmpeg-python imageio[ffmpeg] tensorboardX huggingface-hub g2p_en opencv-python imageio torchaudio gradio gtts soundfile fairseq huggingface-hub g2p_en altair imageio-ffmpeg pocketsphinx dlib ffmpeg jq
 
32
  RUN apt-add-repository -y universe
33
 
34
  RUN python3 -m venv /content/venv
35
+
36
+ # Install dependencies
37
+ RUN apt-get update && apt-get install -y build-essential cmake
38
+
39
+ # Install dlib library
40
+ RUN pip install dlib
41
 
42
  RUN /content/venv/bin/pip install git+https://github.com/One-sixth/fairseq.git
43
  # RUN /content/venv/bin/pip install setuptools pandas scipy matplotlib torch torchvision ffmpeg-python imageio[ffmpeg] tensorboardX huggingface-hub g2p_en opencv-python imageio torchaudio gradio gtts soundfile fairseq huggingface-hub g2p_en altair imageio-ffmpeg pocketsphinx dlib ffmpeg jq