SnapFeast / Dockerfile
Testys's picture
Testing out FastAPI for FaceEmbeddings extraction
b36b72b verified
raw
history blame
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"]