From 191f13bd1998b38cc76c37ef7f4dd5419ad2f2d9 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 2 Oct 2019 10:44:48 +0200 Subject: [PATCH] include supercronic as crond replacement --- Dockerfile.linux.amd64 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile.linux.amd64 b/Dockerfile.linux.amd64 index 69e1595..4842dc3 100644 --- a/Dockerfile.linux.amd64 +++ b/Dockerfile.linux.amd64 @@ -14,6 +14,8 @@ RUN addgroup -g 101 -S nginx && \ rm -rf /etc/nginx/conf.d && \ curl -SsL -o /usr/local/bin/gomplate https://github.com/hairyhenderson/gomplate/releases/download/v3.5.0/gomplate_linux-amd64-slim && \ chmod 755 /usr/local/bin/gomplate && \ + curl -SsL -o /usr/local/bin/supercronic https://github.com/aptible/supercronic/releases/download/v0.1.9/supercronic-linux-amd64 && \ + chmod 755 /usr/local/bin/supercronic && \ touch /run/nginx.pid && \ chown nginx /run/nginx.pid && \ chown -R nginx /var/log/nginx && \