pyircbot/examples/docker/Dockerfile

29 lines
1.1 KiB
Docker
Raw Normal View History

2015-06-23 00:24:41 -07:00
FROM ubuntu:trusty
CMD ["supervisord"]
RUN sed -i -e 's/archive.ubuntu.com/mirrors.digitalocean.com/' /etc/apt/sources.list ; \
apt-get update ; \
2015-11-01 18:16:34 -08:00
apt-get install -y python3 python3-setuptools python3-requests curl unzip sqlite3 supervisor ; \
easy_install3 pip ; \
2015-06-23 00:24:41 -07:00
pip3 install praw pytz ; \
2015-11-01 18:16:34 -08:00
curl -o /tmp/bitcoinrpc.zip https://codeload.github.com/dpedu/python-bitcoinrpc/zip/master ; \
unzip bitcoinrpc.zip ; \
cd python-bitcoinrpc-master ; \
python3 setup.py install ; \
2015-06-23 00:24:41 -07:00
useradd bot ; \
mkdir /srv/bot ; \
chown bot /srv/bot ; \
echo "[supervisord]" > /etc/supervisor/conf.d/supervisor.conf ; \
echo "nodaemon=true" >> /etc/supervisor/conf.d/supervisor.conf ; \
rm -rf /var/lib/apt/lists/* /tmp/bitcoinrpc.zip /tmp/python-bitcoinrpc-master
2015-06-23 00:24:41 -07:00
COPY . /tmp/pyircbot/
2015-06-23 00:24:41 -07:00
RUN cd /tmp/pyircbot/ ; \
python3 setup.py install ; \
su -c "cp -r /tmp/pyircbot/examples/config.json /tmp/pyircbot/examples/data/ /srv/bot/" bot ; \
cp examples/docker/pyircbot.conf /etc/supervisor/conf.d/pyircbot.conf ; \
cd / ; \
rm -rf /tmp/pyircbot