6 lines
270 B
Docker
6 lines
270 B
Docker
|
FROM ubuntu:20.04
|
||
|
|
||
|
COPY run.sh requirements.txt testwatermark.jpg /app/
|
||
|
COPY lazyleech /app/lazyleech/
|
||
|
RUN apt update && apt install -y --no-install-recommends python3 python3-pip ffmpeg aria2 file && rm -rf /var/lib/apt/lists/*
|
||
|
RUN pip3 install -r /app/requirements.txt
|