mirror of
https://github.com/alfem/telegram-download-daemon.git
synced 2025-03-01 00:24:46 +08:00
18 lines
353 B
Docker
18 lines
353 B
Docker
FROM python:3.6
|
|
|
|
WORKDIR /app
|
|
|
|
COPY *.py ./
|
|
|
|
RUN echo $TARGETPLATFORM
|
|
|
|
RUN if [ "$TARGETPLATFORM" = "linux/arm/v7" ]; then \
|
|
which lsb_release \
|
|
lsb_release -a \
|
|
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" ]
|