Delete apt lists to save space, consolidate run steps. Also fix dockerfile after gitlab upgrade

This commit is contained in:
dave 2015-09-14 21:41:26 -07:00
parent b26e1ef8d5
commit 7f51eedee7
1 changed files with 7 additions and 6 deletions

View File

@ -1,22 +1,23 @@
FROM ubuntu:trusty
RUN apt-get update ; \
apt-get install -y python3 python3-setuptools python3-requests python3-yaml wget sqlite3 supervisor
RUN easy_install3 pip ; \
apt-get install -y python3 python3-setuptools python3-requests python3-yaml wget sqlite3 supervisor ; \
easy_install3 pip ; \
pip3 install praw pytz ; \
useradd bot ; \
cd /tmp ; \
wget http://gitlab.xmopx.net/dave/pyircbot3/repository/archive.tar.gz ; \
tar zxvf archive.tar.gz ; \
rm archive.tar.gz ;\
mkdir pyircbot.git ;\
tar zxvf archive.tar.gz -C pyircbot.git --strip-components=1 ; \
rm archive.tar.gz ; \
cd pyircbot3.git/ ; \
python3 setup.py install ; \
mkdir /srv/bot ; \
chown bot /srv/bot ; \
echo "[supervisord]" > /etc/supervisor/conf.d/supervisor.conf ; \
echo "nodaemon=true" >> /etc/supervisor/conf.d/supervisor.conf ; \
su -c "cp -r /tmp/pyircbot3.git/examples/config.json /tmp/pyircbot3.git/examples/data/ /srv/bot/" bot
su -c "cp -r /tmp/pyircbot3.git/examples/config.json /tmp/pyircbot3.git/examples/data/ /srv/bot/" bot ; \
rm -rf /var/lib/apt/lists/*
ADD pyircbot.conf /etc/supervisor/conf.d/pyircbot.conf