mirror of
https://github.com/alfem/telegram-download-daemon.git
synced 2024-11-10 17:05:26 +08:00
9 lines
No EOL
213 B
Docker
9 lines
No EOL
213 B
Docker
FROM python:3.6
|
|
|
|
COPY *.py /
|
|
|
|
RUN echo $TARGETPLATFORM
|
|
|
|
RUN if [ "$TARGETPLATFORM" = "linux/arm64" ] ; then pip install telethon; else pip install telethon cryptg
|
|
|
|
CMD [ "python", "./telegram-download-daemon.py" ] |