Spaces:
Build error
Build error
FROM debian:latest | |
RUN apt update && apt upgrade -y | |
RUN apt install git python3-pip ffmpeg -y | |
RUN cd / | |
RUN git clone https://github.com/imseldrith/MegaDL-Bot | |
RUN cd MegaDL-Bot | |
WORKDIR /MegaDL-Bot | |
RUN chmod 0777 /MegaDL-Bot | |
RUN pip3 install --upgrade pip | |
RUN pip3 install -U -r requirements.txt | |
CMD python3 app.py | |