Spaces:
Running
Running
File size: 455 Bytes
be14aa6 35089dc be14aa6 2afddd4 348fb14 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
FROM python:3.9-slim
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
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 . /code/
RUN chmod 777 /.cache
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |