Spaces:
Build error
Build error
File size: 291 Bytes
68850d0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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 pip3 install --upgrade pip
RUN pip3 install -U -r requirements.txt
CMD python3 main.py
|