You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

9 lines
233 B

  1. FROM python:3.7-alpine3.14
  2. RUN \
  3. apk add --no-cache gcc libc-dev libffi-dev \
  4. && pip install --no-cache-dir telethon 'cryptg<0.3' tqdm
  5. COPY telegram-dl.py /
  6. VOLUME ["/data/"]
  7. WORKDIR /data
  8. ENTRYPOINT ["python3", "/telegram-dl.py"]