Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
lj1995/vocal2guitar
uptaleend
/
vocal2guitar
like
0
Runtime error
App
Files
Files
Community
6b44236
vocal2guitar
/
Dockerfile
uptaleend
Duplicate from lj1995/vocal2guitar
6b44236
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"
]