Files
aquabot/Dockerfile
CramMK a653476e9c General development process
- new cog commands
- new voice cog
- new requirements.txt
- adjusted readme
- added Dockerfile for faster deployment (still WIP)
- other general things
2020-01-23 15:57:30 +00:00

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