tg-leech-bot/Dockerfile

8 lines
296 B
Docker
Raw Normal View History

2021-03-05 13:39:57 +00:00
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/*
2021-03-05 14:19:18 +00:00
RUN pip3 install -r /app/requirements.txt
CMD ["sh" "/app/run.sh"]