General development process

- new cog commands
- new voice cog
- new requirements.txt
- adjusted readme
- added Dockerfile for faster deployment (still WIP)
- other general things
This commit is contained in:
CramMK
2020-01-23 15:57:30 +00:00
parent 10c65cfda4
commit a653476e9c
14 changed files with 217 additions and 52 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.6
MAINTAINER Marco Thomas
RUN mkdir /aquabot-docker
WORKDIR /aquabot-docker
COPY . /aquabot-docker
RUN pip install --user -r requirements.txt
CMD ["python", "aquabot.py"]