Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
lewiswu1209/MockingBird
kira4424
/
Tacotron-zero-short-voice-clone
like
13
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
1a58839
Tacotron-zero-short-voice-clone
/
web
/
DOCKERFILE
kira4424
Duplicate from lewiswu1209/MockingBird
d59aeff
almost 2 years ago
raw
Copy download link
history
blame
Safe
162 Bytes
FROM
python:
3.7
RUN
pip install gevent uwsgi flask
COPY
app.py /app.py
EXPOSE
3000
ENTRYPOINT
[
"uwsgi"
,
"--http"
,
":3000"
,
"--master"
,
"--module"
,
"app:app"
]