telegram-download-daemon/Dockerfile

7 lines
112 B
Text
Raw Normal View History

FROM python:3.6
2020-04-24 03:11:24 +08:00
COPY *.py /
2020-04-24 03:11:24 +08:00
RUN pip install telethon cryptg
CMD [ "python", "./telegram-download-daemon.py" ]