Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +6 -4
Dockerfile
CHANGED
|
@@ -17,13 +17,15 @@ WORKDIR $HOME/app
|
|
| 17 |
# Copy the application code and the requirements.txt file
|
| 18 |
COPY --chown=user . $HOME/app
|
| 19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
# Clone VOICEVOX Engine from Git Repository
|
| 21 |
RUN git clone https://github.com/VOICEVOX/voicevox_engine.git
|
| 22 |
|
| 23 |
-
# Download VOICEVOX Core from latest Release
|
| 24 |
-
curl -sSfL https://github.com/VOICEVOX/voicevox_core/releases/latest/download/download-linux-x64 -o download
|
| 25 |
-
chmod +x download
|
| 26 |
-
|
| 27 |
# Install requirements.txt
|
| 28 |
RUN pip install --no-cache-dir --upgrade -r voicevox_engine/requirements.txt
|
| 29 |
|
|
|
|
| 17 |
# Copy the application code and the requirements.txt file
|
| 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-linux-x64 -o download
|
| 22 |
+
|
| 23 |
+
# Install VOICEVOX Core
|
| 24 |
+
RUN chmod +x download
|
| 25 |
+
|
| 26 |
# Clone VOICEVOX Engine from Git Repository
|
| 27 |
RUN git clone https://github.com/VOICEVOX/voicevox_engine.git
|
| 28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
# Install requirements.txt
|
| 30 |
RUN pip install --no-cache-dir --upgrade -r voicevox_engine/requirements.txt
|
| 31 |
|