Spaces:
Sleeping
Sleeping
File size: 151 Bytes
d41cf19 |
1 2 3 4 5 6 |
FROM python:3.10
WORKDIR /app
RUN apt-get update && apt-get install -y git ffmpeg
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "app.py"] |