Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -26,8 +26,8 @@ RUN curl -s https://api.github.com/repos/VOICEVOX/voicevox_core/releases/latest
|
|
26 |
| xargs curl -L -o voicevox_core.zip
|
27 |
|
28 |
# Extract VOICEVOX Core and flatten if needed
|
29 |
-
RUN unzip voicevox_core.zip -d voicevox_core && \
|
30 |
-
cd voicevox_core && \
|
31 |
entry=$(find . -mindepth 1 -maxdepth 1) && \
|
32 |
count=$(echo "$entry" | wc -l) && \
|
33 |
[ "$count" -eq 1 ] && \
|
|
|
26 |
| xargs curl -L -o voicevox_core.zip
|
27 |
|
28 |
# Extract VOICEVOX Core and flatten if needed
|
29 |
+
RUN unzip voicevox_core.zip -d ./voicevox_core && \
|
30 |
+
cd ./voicevox_core && \
|
31 |
entry=$(find . -mindepth 1 -maxdepth 1) && \
|
32 |
count=$(echo "$entry" | wc -l) && \
|
33 |
[ "$count" -eq 1 ] && \
|