Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Yuchan5386
/
Flexi-API
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
7b4c232
Flexi-API
/
Dockerfile
Yuchan5386
Create Dockerfile
7b4c232
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
203 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
. .
RUN
pip install fastapi uvicorn tensorflow numpy requests sentencepiece nltk scikit-learn
CMD
[
"uvicorn"
,
"api:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]