Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +8 -8
Dockerfile
CHANGED
@@ -24,30 +24,30 @@ COPY --chown=user . $HOME/app
|
|
24 |
# ---------- Important! https://github.com/VOICEVOX/voicevox_core/issues/1000 ----------
|
25 |
|
26 |
# Download VOICEVOX Core from latest Release
|
27 |
-
|
28 |
|
29 |
# Give execution permissions
|
30 |
-
|
31 |
|
32 |
# Install VOICEVOX Core
|
33 |
-
|
34 |
|
35 |
# Clone VOICEVOX Engine from Master Branch
|
36 |
-
|
37 |
|
38 |
# ---------- Important! Temporary Downgrade to 0.15.x ----------
|
39 |
|
40 |
# Download VOICEVOX Core from 0.15.7 Release
|
41 |
-
RUN curl -sSfL https://github.com/VOICEVOX/voicevox_core/releases/download/0.15.7/download.sh --output download.sh
|
42 |
|
43 |
# Give execution permissions
|
44 |
-
RUN chmod +x ./download.sh
|
45 |
|
46 |
# Install VOICEVOX Core
|
47 |
-
RUN ./download.sh --output voicevox_core --version 0.15.7
|
48 |
|
49 |
# Clone VOICEVOX Engine from 0.23.0 Repository
|
50 |
-
RUN git clone --branch release-0.23 https://github.com/VOICEVOX/voicevox_engine.git voicevox_engine
|
51 |
|
52 |
# ---------- Important! https://github.com/VOICEVOX/voicevox_engine/issues/1568 ----------
|
53 |
|
|
|
24 |
# ---------- Important! https://github.com/VOICEVOX/voicevox_core/issues/1000 ----------
|
25 |
|
26 |
# Download VOICEVOX Core from latest Release
|
27 |
+
RUN curl -sSfL https://github.com/VOICEVOX/voicevox_core/releases/latest/download/download-linux-x64 --output download
|
28 |
|
29 |
# Give execution permissions
|
30 |
+
RUN chmod +x ./download
|
31 |
|
32 |
# Install VOICEVOX Core
|
33 |
+
RUN ./download --output voicevox_core
|
34 |
|
35 |
# Clone VOICEVOX Engine from Master Branch
|
36 |
+
RUN git clone --branch master https://github.com/VOICEVOX/voicevox_engine.git voicevox_engine
|
37 |
|
38 |
# ---------- Important! Temporary Downgrade to 0.15.x ----------
|
39 |
|
40 |
# Download VOICEVOX Core from 0.15.7 Release
|
41 |
+
# RUN curl -sSfL https://github.com/VOICEVOX/voicevox_core/releases/download/0.15.7/download.sh --output download.sh
|
42 |
|
43 |
# Give execution permissions
|
44 |
+
# RUN chmod +x ./download.sh
|
45 |
|
46 |
# Install VOICEVOX Core
|
47 |
+
# RUN ./download.sh --output voicevox_core --version 0.15.7
|
48 |
|
49 |
# Clone VOICEVOX Engine from 0.23.0 Repository
|
50 |
+
# RUN git clone --branch release-0.23 https://github.com/VOICEVOX/voicevox_engine.git voicevox_engine
|
51 |
|
52 |
# ---------- Important! https://github.com/VOICEVOX/voicevox_engine/issues/1568 ----------
|
53 |
|