Spaces:
Build error
Build error
GPTfree api
commited on
Update Dockerfile
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
@@ -19,9 +19,12 @@ RUN git clone https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-We
|
|
19 |
# Set the working directory to the cloned repo
|
20 |
WORKDIR /app/Retrieval-based-Voice-Conversion-WebUI
|
21 |
|
|
|
|
|
|
|
22 |
# Install Python dependencies
|
23 |
RUN pip install --upgrade pip
|
24 |
-
RUN pip install -r requirements.txt
|
25 |
|
26 |
# Expose the port that the web UI will use
|
27 |
EXPOSE 7897
|
|
|
19 |
# Set the working directory to the cloned repo
|
20 |
WORKDIR /app/Retrieval-based-Voice-Conversion-WebUI
|
21 |
|
22 |
+
# Modify requirements.txt to install compatible omegaconf version
|
23 |
+
RUN sed -i 's/omegaconf<2.1/omegaconf>=2.0.5,<2.1/' requirements.txt
|
24 |
+
|
25 |
# Install Python dependencies
|
26 |
RUN pip install --upgrade pip
|
27 |
+
RUN pip install -r requirements.txt
|
28 |
|
29 |
# Expose the port that the web UI will use
|
30 |
EXPOSE 7897
|