File size: 398 Bytes
03b652c
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM fedora:latest

RUN dnf upgrade -y
RUN dnf install \
  https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm -y
RUN dnf install git python3-pip ffmpeg megatools -y
RUN pip3 install -U pip
RUN mkdir /app/
WORKDIR /app/
RUN git clone https://github.com/imseldrith/Mega.nz-Bot.git /app
RUN pip3 install -U -r requirements.txt
CMD [ "bash", "startup.sh" ]