first public commit

This commit is contained in:
2018-07-07 23:25:54 +12:00
commit fc56adaaa7
13 changed files with 833 additions and 0 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM arm32v6/python:3.6.4-alpine3.7
COPY . /code
WORKDIR /code
RUN pip install -Ur requirements.txt
CMD [ "python3", "bot.py" ]