Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Bagi4
/
textClassificator
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
dce67e9
textClassificator
/
Dockerfile
Bagi4
upload project
502401a
about 1 year ago
raw
Copy download link
history
blame
Safe
140 Bytes
FROM
python:
3.9
COPY
. .
RUN
pip install --upgrade -r requirements.txt
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]