Maki is a Discord bot that does things. Written in Python 3 and relies on Discord.py API implementation.
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.

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