Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
hivecorp/s8test
hivecorp
/
apitts
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
apitts
/
Dockerfile
hivecorp
Update Dockerfile
2894da7
verified
25 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
142 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"python"
,
"app.py"
]