face-detector / Dockerfile
osrokas's picture
Synced repo using 'sync_with_huggingface' Github Action
e3e2199 verified
raw
history blame
540 Bytes
FROM python:3.9-slim
RUN useradd -m -u 1000 user
USER user
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN chown -R user:user /code
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
RUN pip install torch==1.9.0+cpu torchvision==0.10.0+cpu -f https://download.pytorch.org/whl/torch_stable.html
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN mkdir /.cache
COPY --chown=user:user . /code
RUN chmod 777 /.cache
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]