Spaces:
Runtime error
Runtime error
PorYoung
commited on
Commit
•
b9f86ec
1
Parent(s):
36a75b5
init
Browse files- Dockerfile +9 -0
- so-vits-svc +1 -0
Dockerfile
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM python:3.9
|
2 |
+
|
3 |
+
WORKDIR /work
|
4 |
+
|
5 |
+
RUN git clone https://github.com/svc-develop-team/so-vits-svc.git && cd so-vits-svc
|
6 |
+
|
7 |
+
RUN pip install --no-cache-dir --upgrade -r /work/requirements.txt
|
8 |
+
|
9 |
+
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|
so-vits-svc
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit 5977fb41d9930440c4a5a18b4badf4a7444af5c8
|