Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Testys
/
SnapFeast
like
0
Sleeping
App
Files
Files
Community
78551f3
SnapFeast
/
Dockerfile
Testys
Testing out FastAPI for FaceEmbeddings extraction
b36b72b
verified
3 months ago
raw
Copy download link
history
blame
Safe
173 Bytes
FROM
python:
3.10
.
12
COPY
. .
WORKDIR
/
RUN
pip install --no-cache-dir --upgrade -r /requirements.txt
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]