2018-09-26 18:24:55 +03:00
|
|
|
FROM ubuntu:18.04
|
|
|
|
|
RUN apt-get update && \
|
|
|
|
|
apt-get install -y python3 python3-pip && \
|
|
|
|
|
pip3 install python-telegram-bot && \
|
|
|
|
|
pip3 install requests && \
|
2018-09-26 18:34:46 +03:00
|
|
|
pip3 install beautifulsoup4
|
2018-09-26 18:24:55 +03:00
|
|
|
|
|
|
|
|
WORKDIR /usr/share/fesmoo_perdoliq
|
|
|
|
|
COPY ./*py /usr/share/fesmoo_perdoliq/
|
2019-12-06 12:23:21 +03:00
|
|
|
CMD python3 bot.py
|
2018-09-26 18:24:55 +03:00
|
|
|
|