Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
fantasyfish
/
RVC
like
0
Running
App
Files
Files
Community
9d6d299
RVC
/
Dockerfile
fantasyfish
Initial commit
4de32eb
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"
]