2018-09-24 05:07:58 +02:00
|
|
|
# Docker image for Tweet-Toot project.
|
|
|
|
FROM ubuntu
|
|
|
|
MAINTAINER ayushsharma.22+tweettoot@gmail.com
|
|
|
|
|
|
|
|
ARG mastodon_token
|
|
|
|
ARG papertrail_token
|
|
|
|
|
|
|
|
RUN cd /root;\
|
|
|
|
apt-get -y update;\
|
|
|
|
apt-get -y upgrade;\
|
|
|
|
apt-get -y install python3 python3-pip git wget cron;\
|
|
|
|
git clone https://github.com/ayush-sharma/tweet-toot.git;\
|
|
|
|
cd tweet-toot;\
|
|
|
|
pip3 install -r requirements.txt;\
|
|
|
|
apt-get -y purge python3-pip git;\
|
2018-09-24 11:20:34 +02:00
|
|
|
apt-get -y install python3-idna;\
|
2018-09-24 05:07:58 +02:00
|
|
|
apt-get -y autoremove;\
|
|
|
|
apt-get -y autoclean;\
|
|
|
|
# Configure Tweet-Toot
|
|
|
|
sed -i 's/"toots.app_secure_token": ""/"toots.app_secure_token": "'$mastodon_token'"/g' config.json
|
|
|
|
|
|
|
|
# Install Papertrail agent
|
|
|
|
RUN wget -qO - --header="X-Papertrail-Token: "$papertrail_token https://papertrailapp.com/destinations/10693082/setup.sh | bash;\
|
2018-09-24 11:20:34 +02:00
|
|
|
wget - https://github.com/papertrail/remote_syslog2/releases/download/v0.20/remote-syslog2_0.20_amd64.deb;\
|
2018-09-24 05:07:58 +02:00
|
|
|
dpkg -i remote-syslog2_0.20_amd64.deb;\
|
2018-09-24 11:20:34 +02:00
|
|
|
remote_syslog \
|
|
|
|
-p 22420 \
|
|
|
|
-d logs7.papertrailapp.com \
|
|
|
|
--pid-file=/var/run/remote_syslog.pid \
|
|
|
|
/tmp/tweet-toot.log;\
|
2018-09-24 05:07:58 +02:00
|
|
|
apt-get -y purge wget
|
|
|
|
|
2018-09-24 11:20:34 +02:00
|
|
|
RUN crontab -l > /tmp/crontab;\
|
|
|
|
echo '* * * * * cd /root/tweet-toot; python3 /root/tweet-toot/run.py >> /tmp/tweet-toot.log' >> /tmp/crontab;\
|
2018-09-24 11:38:33 +02:00
|
|
|
crontab /tmp/crontab
|
|
|
|
|
|
|
|
RUN touch /tmp/tweet-toot.log
|
|
|
|
|
|
|
|
CMD cron && tail -f /tmp/tweet-toot.log
|