Spaces:
Runtime error
Runtime error
File size: 267 Bytes
c6a149f 657fa61 dcf9b38 bd9f2a7 b7c10e1 dcf9b38 bd9f2a7 fdd1252 657fa61 dcf9b38 8d3735e 7bf2558 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
FROM debian:latest
COPY . /app
RUN chmod -R 777 /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"] |