mirror of
https://github.com/alfem/telegram-download-daemon.git
synced 2025-03-01 08:33:11 +08:00
9 lines
No EOL
210 B
Docker
9 lines
No EOL
210 B
Docker
FROM python:3.6
|
|
|
|
COPY *.py /
|
|
|
|
RUN echo $TARGETPLATFORM
|
|
|
|
RUN test "$TARGETPLATFORM" = "linux/arm64" && pip install telethon || else pip install telethon cryptg
|
|
|
|
CMD [ "python", "./telegram-download-daemon.py" ] |