mirror of
https://github.com/alfem/telegram-download-daemon.git
synced 2025-03-01 08:33:11 +08:00
7 lines
133 B
Text
7 lines
133 B
Text
|
FROM python:3
|
||
|
|
||
|
COPY telegram-download-daemon.py /
|
||
|
|
||
|
RUN pip install telethon cryptg
|
||
|
|
||
|
CMD [ "python", "./telegram-download-daemon.py" ]
|