Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dx2102
/
search-mathlib
like
2
Running
App
Files
Files
Community
3d544a7
search-mathlib
/
Dockerfile
dx2102
Update Dockerfile
a08a0df
verified
5 months ago
raw
Copy download link
history
blame
Safe
169 Bytes
FROM
python:
3.9
RUN
pip install fastapi uvicorn numpy voyageai
WORKDIR
/app
COPY
--
chown
=user . /app
CMD
[
"uvicorn"
,
"server:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]