Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
phamluan
/
test-api
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a5a61e2
test-api
/
Dockerfile
phamluan
first push
a5a61e2
9 months ago
raw
Copy download link
history
blame
196 Bytes
FROM
python:
3.9
-slim
WORKDIR
/code
COPY
app /code
RUN
pip install --upgrade pip && pip install -r requirements.txt
EXPOSE
7860
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]