Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
guan-wang
/
audio2txt
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
audio2txt
/
Dockerfile
guan-wang
Create Dockerfile
3864e9f
verified
22 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
151 Bytes
FROM python:
3.11
RUN pip install
--no-cache-dir
--upgrade
-r requirements
.txt
CMD
[
"uvicorn"
,
"app.main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]