telegram-download-daemon/Dockerfile
2021-05-01 22:25:18 +02:00

14 lines
No EOL
292 B
Docker

FROM python:3.6
COPY *.py /
RUN echo $TARGETPLATFORM
RUN if [ "$TARGETPLATFORM" = "linux/arm/v7" ]; then \
mv /usr/bin/lsb_release /usr/bin/lsb_release.bak \
pip install telethon; \
else \
pip install telethon cryptg; \
fi
CMD [ "python", "./telegram-download-daemon.py" ]