Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dx2102
/
lean-expr-tree
like
1
Sleeping
App
Files
Files
Community
9f3d5df
lean-expr-tree
/
Dockerfile
dx2102
Update Dockerfile
9f3d5df
verified
4 months ago
raw
Copy download link
history
blame
Safe
156 Bytes
FROM
python:
3.9
RUN
pip install fastapi uvicorn
WORKDIR
/app
COPY
--
chown
=user . /app
CMD
[
"uvicorn"
,
"server:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]