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.

Dockerfile 376 B

12345678910111213141516
  1. FROM python:3.6
  2. RUN git clone https://git.thoughtless.eu/Cinabre/Telegram-Betaseries /app
  3. WORKDIR /app
  4. RUN pip install requests
  5. RUN pip install python-telegram-bot
  6. RUN python3.6 generate_config.py config &CLIENT_ID &LOGIN &PASSWORD &USER_ID &TOKEN_BOT
  7. #Ajout de series aleatoires.
  8. RUN python3.6 generate_config.py series 355480 305089 380654
  9. CMD ["python3", "./bot.py"]