Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
asv7j
/
tran
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0a02781
tran
/
Dockerfile
asv7j
Create Dockerfile
2feeda5
verified
6 months ago
raw
Copy download link
history
blame
Safe
182 Bytes
FROM
python:
3.9
WORKDIR
/code
RUN
pip install fastapi requests libretranslate uvicorn[standard]==0.17.*
COPY
. .
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]