Spaces:
Runtime error
Runtime error
| FROM python:3.9 | |
| WORKDIR /code | |
| RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y | |
| COPY ./requirements.txt /code/requirements.txt | |
| RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt | |
| COPY . . | |
| CMD ["python", "app.py"] |