DeepLearningExamples/PyTorch/SpeechSynthesis/Tacotron2/Dockerfile
Przemek Strzelczyk 0663b67c1a Updating models
2019-07-08 22:51:28 +02:00

11 lines
352 B
Docker

FROM nvcr.io/nvidia/pytorch:19.03-py3
ADD . /workspace/tacotron2
WORKDIR /workspace/tacotron2
RUN pip install -r requirements.txt
RUN cd /workspace; \
git clone https://github.com/NVIDIA/apex.git; \
cd /workspace/apex; \
pip install -v --no-cache-dir --global-option="--cpp_ext" --global-option="--cuda_ext" .
WORKDIR /workspace/tacotron2