Maki is a Discord bot that does things. Written in Python 3 and relies on Discord.py API implementation.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

12 wiersze
191B

  1. FROM python:3.5-alpine
  2. # copy files
  3. WORKDIR /maki
  4. COPY ["requirements.txt", "*.py", "./"]
  5. # install dependencies
  6. RUN pip install -r requirements.txt
  7. # start bot
  8. CMD ["python", "./bot.py"]