MeowSky49887 commited on
Commit
f54c5de
verified
1 Parent(s): a789d5a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -2
Dockerfile CHANGED
@@ -18,10 +18,13 @@ 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/latest/download/download.sh -o download
 
 
 
22
 
23
  # Install VOICEVOX Core
24
- RUN download
25
 
26
  # Clone VOICEVOX Engine from Git Repository
27
  RUN git clone https://github.com/VOICEVOX/voicevox_engine.git
 
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/latest/download/download.sh -o download.sh
22
+
23
+ # Give execution permissions
24
+ RUN chmod +x download.sh
25
 
26
  # Install VOICEVOX Core
27
+ RUN ./download.sh
28
 
29
  # Clone VOICEVOX Engine from Git Repository
30
  RUN git clone https://github.com/VOICEVOX/voicevox_engine.git