Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
subbu123456
/
roberta
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0a5bbcc
roberta
/
Dockerfile
subbu123456
Upload 4 files
0a5bbcc
verified
11 months ago
raw
Copy download link
history
blame
Safe
167 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
. /app
RUN
pip install --no-cache-dir -r requirements.txt
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]