Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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
|