18 lines
451 B
Docker
18 lines
451 B
Docker
|
FROM node:10-slim
|
||
|
|
||
|
RUN apt-get update && apt-get install --assume-yes software-properties-common && \
|
||
|
apt-get install --assume-yes git cron
|
||
|
|
||
|
RUN git clone https://github.com/yogthos/mastodon-bot /mastodon-bot && \
|
||
|
cd /mastodon-bot && npm install && \
|
||
|
npm install -g lumo-cljs
|
||
|
|
||
|
RUN mkdir /config && touch /config/config.edn && touch /var/log/cron.log
|
||
|
|
||
|
ADD poll.sh /poll.sh
|
||
|
|
||
|
ENV MASTODON_BOT_CONFIG /config/config.edn
|
||
|
VOLUME /config
|
||
|
|
||
|
CMD /poll.sh
|