1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/urlwatch/Dockerfile

44 lines
1.4 KiB
Docker
Raw Normal View History

2015-07-07 07:44:11 +00:00
#
# Dockerfile for urlwatch
#
2021-01-11 10:48:15 +00:00
FROM alpine:3
LABEL maintainer="EasyPi Software Foundation"
2015-07-07 07:44:11 +00:00
2019-05-02 11:34:00 +00:00
RUN set -xe \
2021-04-06 08:08:14 +00:00
&& apk add --no-cache ca-certificates \
build-base \
libffi-dev \
libxml2 \
libxml2-dev \
libxslt \
libxslt-dev \
openssl-dev \
py3-cryptography \
py3-pip \
python3 \
python3-dev \
&& pip3 install --no-cache-dir appdirs \
cssselect \
keyring \
lxml \
minidb \
pyyaml \
requests \
chump \
beautifulsoup4 \
pushbullet.py \
urlwatch \
2019-05-09 09:18:05 +00:00
&& apk del build-base \
libffi-dev \
2015-07-07 07:44:11 +00:00
libxml2-dev \
libxslt-dev \
2019-05-02 11:34:00 +00:00
openssl-dev \
python3-dev \
2019-05-09 09:18:05 +00:00
&& echo '*/30 * * * * cd /root/.urlwatch && urlwatch --urls urls.yaml --config urlwatch.yaml --hooks hooks.py --cache cache.db' | crontab -
2015-07-07 07:44:11 +00:00
2015-07-07 09:08:38 +00:00
VOLUME /root/.urlwatch
WORKDIR /root/.urlwatch
2015-07-07 07:44:11 +00:00
CMD ["crond", "-f", "-L", "/dev/stdout"]