telegram-download-daemon/Dockerfile
2021-05-01 21:12:23 +02:00

9 lines
No EOL
205 B
Docker

FROM python:3.6
COPY *.py /
RUN echo $TARGETPLATFORM
RUN test "$TARGETPLATFORM" = "linux/arm64" && pip install telethon || pip install telethon cryptg
CMD [ "python", "./telegram-download-daemon.py" ]