Spaces:
Runtime error
Runtime error
| FROM python:latest | |
| WORKDIR /app | |
| COPY . . | |
| RUN pip install -r requirements.txt | |
| RUN apt-get update && \ | |
| apt-get install -y ffmpeg && \ | |
| apt-get clean | |
| EXPOSE 8000:8000 | |
| CMD ["python", "-u", "server.py"] |