1
0
mirror of https://github.com/MrDetonia/Maki.git synced 2024-11-22 03:44:18 -05:00

fixed minimum version requirements and tidied dockerfile

This commit is contained in:
Zac Herd 2019-02-26 14:22:21 +00:00
parent 6045fab0f9
commit 5c1afd1b73
2 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,11 @@
FROM python:3.5-alpine
# copy files
WORKDIR /maki
COPY ["requirements.txt", "*.py", "./"]
# install dependencies
RUN pip install -r requirements.txt
# start bot
CMD ["python", "./bot.py"]

View File

@ -1,2 +1,3 @@
discord.py==0.15.1
discord.py>=0.16.0
requests>=2.20.0
ftfy>=5.5.0