From db3d3567dcd928f8b23d6691037b894c03a9a584 Mon Sep 17 00:00:00 2001 From: kev Date: Mon, 11 Jan 2021 18:48:15 +0800 Subject: [PATCH] update --- tabula/docker-compose.yml | 2 ++ urlwatch/Dockerfile | 23 ++++++++++++----------- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/tabula/docker-compose.yml b/tabula/docker-compose.yml index 76e4cae..c5b7bc3 100644 --- a/tabula/docker-compose.yml +++ b/tabula/docker-compose.yml @@ -4,4 +4,6 @@ services: image: vimagick/tabula ports: - "9292:9292" + volumes: + - ./data:/root/.tabula restart: unless-stopped diff --git a/urlwatch/Dockerfile b/urlwatch/Dockerfile index 06bf32a..8724969 100644 --- a/urlwatch/Dockerfile +++ b/urlwatch/Dockerfile @@ -2,8 +2,8 @@ # Dockerfile for urlwatch # -FROM alpine -MAINTAINER kev +FROM alpine:3 +MAINTAINER EasyPi Software Foundation RUN set -xe \ && apk add --no-cache ca-certificates \ @@ -14,17 +14,18 @@ RUN set -xe \ libxslt \ libxslt-dev \ openssl-dev \ + py3-pip \ python3 \ python3-dev \ - && python3 -m pip install appdirs \ - cssselect \ - keyring \ - lxml \ - minidb \ - pyyaml \ - requests \ - chump \ - urlwatch \ + && pip3 install appdirs \ + cssselect \ + keyring \ + lxml \ + minidb \ + pyyaml \ + requests \ + chump \ + urlwatch \ && apk del build-base \ libffi-dev \ libxml2-dev \