Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
nicopi
/
server
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
server
/
Dockerfile
nicopi
Create Dockerfile
931fffd
verified
about 2 months ago
raw
Copy download link
history
blame
contribute
delete
165 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
. .
RUN
pip install fastapi uvicorn pydantic
EXPOSE
7860
CMD
[
"uvicorn"
,
"server:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]