Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -21,10 +21,10 @@ RUN apt-get update && apt-get install -y git wget ffmpeg libsndfile1 unzip build
|
|
| 21 |
&& pip install --no-cache-dir -r requirements.txt \
|
| 22 |
&& rm -rf /var/lib/apt/lists/*
|
| 23 |
|
| 24 |
-
RUN mkdir /home/user/
|
| 25 |
|
| 26 |
-
RUN git clone --branch v0.22.0 https://github.com/coqui-ai/TTS.git /home/user/
|
| 27 |
-
&& cd /home/user/
|
| 28 |
&& git submodule update --init --recursive \
|
| 29 |
&& pip install --upgrade pip \
|
| 30 |
&& pip install --no-cache-dir -e .
|
|
|
|
| 21 |
&& pip install --no-cache-dir -r requirements.txt \
|
| 22 |
&& rm -rf /var/lib/apt/lists/*
|
| 23 |
|
| 24 |
+
RUN mkdir /home/user/TTS
|
| 25 |
|
| 26 |
+
RUN git clone --branch v0.22.0 https://github.com/coqui-ai/TTS.git /home/user/TTS \
|
| 27 |
+
&& cd /home/user/TTS \
|
| 28 |
&& git submodule update --init --recursive \
|
| 29 |
&& pip install --upgrade pip \
|
| 30 |
&& pip install --no-cache-dir -e .
|