Skip to content

Commit d73d3e8

Browse files
committed
Fixed installation command in Docker files
1 parent e587370 commit d73d3e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile.cpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COPY requirements.txt .
1414
RUN pip3 install --upgrade pip
1515
RUN pip3 install -r requirements.txt
1616

17-
RUN git clone https://github.com/sovaai/sova-tts-tps && cd sova-tts-tps && pip3 install .
17+
RUN git clone https://github.com/sovaai/sova-tts-tps && cd sova-tts-tps && git checkout v1.0.1 && pip3 install .
1818
RUN cd .. && rm -rf sova-tts-tps
1919

2020
RUN apt-get install -y locales && locale-gen en_US.UTF-8

Dockerfile.gpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COPY requirements.txt .
1414
RUN pip3 install --upgrade pip
1515
RUN pip3 install -r requirements.txt
1616

17-
RUN git clone https://github.com/sovaai/sova-tts-tps && cd sova-tts-tps && pip3 install .
17+
RUN git clone https://github.com/sovaai/sova-tts-tps && cd sova-tts-tps && git checkout v1.0.1 && pip3 install .
1818
RUN cd .. && rm -rf sova-tts-tps
1919

2020
RUN apt-get install -y locales && locale-gen en_US.UTF-8

0 commit comments

Comments
 (0)