Premier commit

This commit is contained in:
nyanloutre 2017-10-05 09:17:02 +02:00
commit c7310c1c60
Signed by: nyanloutre
GPG key ID: F85D93686A3A9063
4 changed files with 133 additions and 0 deletions

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM python:alpine
RUN apk add --no-cache gcc g++ make libffi-dev openssl-dev && \
pip install python-telegram-bot requests block-io
COPY run.py /
CMD ["python", "run.py"]