This commit is contained in:
Alexandr Bogomyakov
2019-11-07 18:10:10 +03:00
commit b43e00ca06
4 changed files with 190 additions and 0 deletions

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM python:3
COPY . /bot
WORKDIR /bot
RUN pip install -r requirements.txt
ENTRYPOINT python /bot/bot.py