soiz1 commited on
Commit
fbda199
·
verified ·
1 Parent(s): c4ab3cc

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -18,7 +18,7 @@ WORKDIR $HOME/app
18
  COPY --chown=user . $HOME/app
19
 
20
  # Download VOICEVOX Core from latest Release
21
- RUN curl -sSfL https://github.com/VOICEVOX/voicevox_core/releases/download/0.15.8/download.sh -o download.sh
22
  RUN sed -i 's|https://jaist.dl.sourceforge.net/project/open-jtalk/Dictionary/open_jtalk_dic-1.11/open_jtalk_dic_utf_8-1.11.tar.gz|https://downloads.sourceforge.net/project/open-jtalk/Dictionary/open_jtalk_dic-1.11/open_jtalk_dic_utf_8-1.11.tar.gz|' download.sh
23
 
24
  # Give execution permissions
@@ -28,7 +28,7 @@ RUN chmod +x download.sh
28
  RUN ./download.sh
29
 
30
  # Clone VOICEVOX Engine from Git Repository
31
- RUN git clone https://github.com/VOICEVOX/voicevox_engine.git
32
 
33
  # Install requirements.txt
34
  RUN pip install --no-cache-dir --upgrade -r voicevox_engine/requirements.txt
 
18
  COPY --chown=user . $HOME/app
19
 
20
  # Download VOICEVOX Core from latest Release
21
+ RUN curl -sSfL https://github.com/VOICEVOX/voicevox_core/releases/download/0.15.0/download.sh -o download.sh
22
  RUN sed -i 's|https://jaist.dl.sourceforge.net/project/open-jtalk/Dictionary/open_jtalk_dic-1.11/open_jtalk_dic_utf_8-1.11.tar.gz|https://downloads.sourceforge.net/project/open-jtalk/Dictionary/open_jtalk_dic-1.11/open_jtalk_dic_utf_8-1.11.tar.gz|' download.sh
23
 
24
  # Give execution permissions
 
28
  RUN ./download.sh
29
 
30
  # Clone VOICEVOX Engine from Git Repository
31
+ RUN git clone --branch release-0.15 https://github.com/VOICEVOX/voicevox_engine.git
32
 
33
  # Install requirements.txt
34
  RUN pip install --no-cache-dir --upgrade -r voicevox_engine/requirements.txt