Skip to content

Commit

Permalink
Fixed dependencies and pip upgrade for dockerfile, as libav-tools was…
Browse files Browse the repository at this point in the history
… a transitional package and does not exist anymore
  • Loading branch information
hyld3 committed Mar 25, 2020
1 parent ab5cb08 commit 7fa1387
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM continuumio/anaconda3:latest
FROM tensorflow/tensorflow:latest-gpu-py3

RUN apt-get update
RUN apt-get install -y libasound-dev portaudio19-dev libportaudio2 libportaudiocpp0 ffmpeg libav-tools wget git vim
RUN apt-get install -y libasound-dev portaudio19-dev libportaudio2 libportaudiocpp0 ffmpeg wget git vim

RUN wget http://data.keithito.com/data/speech/LJSpeech-1.1.tar.bz2
RUN tar -jxvf LJSpeech-1.1.tar.bz2
Expand All @@ -11,4 +11,5 @@ RUN git clone https://github.com/Rayhane-mamah/Tacotron-2.git

WORKDIR Tacotron-2
RUN ln -s ../LJSpeech-1.1 .
RUN pip install -r requirements.txt
RUN pip install --upgrade pip
RUN pip install -r requirements.txt

0 comments on commit 7fa1387

Please sign in to comment.