Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
|
@@ -33,16 +33,16 @@ RUN git clone --branch master https://github.com/VOICEVOX/voicevox_engine.git vo
|
|
| 33 |
# ---------- Important! Temporary Downgrade to 0.15.x ----------
|
| 34 |
|
| 35 |
# Download VOICEVOX Core from 0.15.7 Release
|
| 36 |
-
|
| 37 |
|
| 38 |
# Give execution permissions
|
| 39 |
-
|
| 40 |
|
| 41 |
# Install VOICEVOX Core
|
| 42 |
-
|
| 43 |
|
| 44 |
# Clone VOICEVOX Engine from 0.23.0 Repository
|
| 45 |
-
|
| 46 |
|
| 47 |
# ---------- Important! https://github.com/VOICEVOX/voicevox_engine/issues/1568 ----------
|
| 48 |
|
|
|
|
| 33 |
# ---------- Important! Temporary Downgrade to 0.15.x ----------
|
| 34 |
|
| 35 |
# Download VOICEVOX Core from 0.15.7 Release
|
| 36 |
+
RUN curl -sSfL https://github.com/VOICEVOX/voicevox_core/releases/download/0.15.7/download.sh --output download.sh
|
| 37 |
|
| 38 |
# Give execution permissions
|
| 39 |
+
RUN chmod +x ./download.sh
|
| 40 |
|
| 41 |
# Install VOICEVOX Core
|
| 42 |
+
RUN ./download.sh --output voicevox_core --version 0.15.7
|
| 43 |
|
| 44 |
# Clone VOICEVOX Engine from 0.23.0 Repository
|
| 45 |
+
RUN git clone --branch release-0.23 https://github.com/VOICEVOX/voicevox_engine.git voicevox_engine
|
| 46 |
|
| 47 |
# ---------- Important! https://github.com/VOICEVOX/voicevox_engine/issues/1568 ----------
|
| 48 |
|