Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

9 lignes
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"]