Maki is a Discord bot that does things. Written in Python 3 and relies on Discord.py API implementation.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

12 lines
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"]