16 lines
340 B
Docker
16 lines
340 B
Docker
FROM ubuntu:20.04
|
|
|
|
RUN mkdir ./app
|
|
RUN chmod 777 ./app
|
|
WORKDIR ./app
|
|
|
|
RUN apt -qq update
|
|
|
|
|
|
RUN apt -qq install -y git aria2 wget curl busybox unzip unrar tar python3 ffmpeg python3-pip file
|
|
RUN pip3 install -r /app/requirements.txt
|
|
|
|
COPY requirements.txt .
|
|
RUN pip3 install --no-cache-dir -r requirements.txt
|
|
COPY . .
|
|
CMD ["bash","run.sh"] |