Spaces:
Running
Running
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 | |
COPY . /code/ | |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"] |