Spaces:
Running
Running
FROM debian:latest | |
COPY . /app | |
WORKDIR /app | |
RUN apt update && apt install ffmpeg software-properties-common python3 python3-pip python-is-python3 -y | |
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt | |
CMD ["python", "app.py"] |