Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Testys
/
snapfeast.ai
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b36b72b
snapfeast.ai
/
Dockerfile
Testys
Testing out FastAPI for FaceEmbeddings extraction
b36b72b
verified
9 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"
]