From f890f3eead55348ccf9772b664580ec72028a3b9 Mon Sep 17 00:00:00 2001 From: yohan <783b8c87@scimetis.net> Date: Tue, 10 Dec 2019 23:38:22 +0100 Subject: [PATCH] Initial commit. --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a8005e9 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +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"]