fortunes-spam/mastodon-bot/Dockerfile

17 lines
337 B
Text
Raw Normal View History

2018-10-23 22:57:06 +02:00
FROM alpine
LABEL \
maintainer="Davide Alberani <da@erlug.linux.it>"
RUN \
apk add --no-cache git fortune python3 && \
pip3 install Mastodon.py && \
cd / && \
git clone https://github.com/alberanid/fortunes-spam.git
COPY fortunes-spam-bot.py /fortunes-spam
WORKDIR /fortunes-spam
ENTRYPOINT ["python3", "fortunes-spam-bot.py"]