From b00c0c337dccb2726e53630d8f9382b0f6072105 Mon Sep 17 00:00:00 2001 From: yohan <783b8c87@scimetis.net> Date: Thu, 20 Feb 2020 18:45:11 +0100 Subject: [PATCH] Removed cron and modified entrypoint. --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a8005e9..19c4d19 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,5 @@ FROM debian:buster MAINTAINER yohan <783b8c87@scimetis.net> ENV DEBIAN_FRONTEND noninteractive ENV TZ Europe/Paris -RUN apt-get update && apt-get -y install duplicity python-swiftclient cron docker.io -RUN rm -f /etc/crontab -ENTRYPOINT ["/usr/sbin/cron", "-f", "-L", "15"] +RUN apt-get update && apt-get -y install duplicity python-swiftclient curl docker.io +ENTRYPOINT ["/root/entrypoint.sh"]