Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
TypicaAI
/
magbert-ner-api
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d2237d8
magbert-ner-api
/
Dockerfile
hassoudi
Upload 6 files
d2237d8
verified
3 months ago
raw
Copy download link
history
blame
Safe
201 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
EXPOSE
8000
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"8000"
]