FROM ubuntu:18.04 WORKDIR /usr/src/app RUN chmod 777 /usr/src/app RUN apt -qq update RUN apt -qq install -y aria2 python3 python3-pip COPY requirements.txt . RUN pip3 install --no-cache-dir -r requirements.txt COPY . . CMD ["bash","start.sh"]