- new cog commands - new voice cog - new requirements.txt - adjusted readme - added Dockerfile for faster deployment (still WIP) - other general things
12 lines
189 B
Docker
12 lines
189 B
Docker
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"]
|