From fc478c824d731f63b09cd4e47795dec0ae76b7d5 Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Mon, 22 Feb 2021 00:30:16 +0100 Subject: [PATCH] fix --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Dockerfile b/Dockerfile index e9b8a76..e4e495c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,10 @@ RUN \ apt update && \ apt install -y cron && \ apt install -y exim4 && \ + apt install -y python3 && \ + apt install -y python3-pip && \ + pip3 install requests && \ + pip3 install Cheetah3 && \ sed -i \ -e "s/dc_eximconfig_configtype='local'/dc_eximconfig_configtype='satellite'/" \ -e "s/dc_smarthost=''/dc_smarthost='${SMARTHOST}'/" \ @@ -24,6 +28,8 @@ RUN \ USER 1000:1000 WORKDIR ${APP_DIR} VOLUME /etc/cron.d +VOLUME ${APP_DIR} +