Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Ricecake123
/
RVC-demo
like
12
Runtime error
App
Files
Files
Community
a65fb63
RVC-demo
/
Dockerfile
RiceCake
first commit
668a7d3
over 1 year ago
raw
Copy download link
history
blame
Safe
163 Bytes
# syntax=docker/dockerfile:1
FROM
python:
3.10
-bullseye
EXPOSE
7865
WORKDIR
/app
COPY
. .
RUN
pip3 install -r requirements.txt
CMD
[
"python3"
,
"infer-web.py"
]