mirror of
https://github.com/alfem/telegram-download-daemon.git
synced 2024-11-14 11:16:37 +08:00
11 lines
No EOL
228 B
Docker
11 lines
No EOL
228 B
Docker
FROM python:3.8
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
lsb-release \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY *.py /
|
|
|
|
RUN pip install telethon cryptg
|
|
|
|
CMD [ "python", "./telegram-download-daemon.py" ] |