No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

9 líneas
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"]