diff --git a/Dockerfile.in b/Dockerfile.in index a6344b2..b69e449 100644 --- a/Dockerfile.in +++ b/Dockerfile.in @@ -19,7 +19,7 @@ RUN curl -sLo /tmp/dumb-init.deb \ && dpkg -i /tmp/dumb-init.deb \ && rm /tmp/dumb-init.deb \ && apt-get clean -ENTRYPOINT ["/usr/bin/dumb-init", "-c", "--"] +ENTRYPOINT ["/usr/bin/dumb-init", "--"] {% endif %} {% if ocf_apt_repo_dist %} diff --git a/Jenkinsfile b/Jenkinsfile index 9564567..ad2b8a6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,3 +1,10 @@ +properties( + [ + // Build fresh base images every day at 2am + pipelineTriggers([cron('* 2 * * *')]), + ] +) + // check out code stage name: 'check-out-code' diff --git a/template.py b/template.py index 2b64d84..75fc7d7 100755 --- a/template.py +++ b/template.py @@ -18,7 +18,7 @@ def report(line, color=bg_yellow): DEFAULT_IMAGE_OPTIONS = { - 'dumb_init_version': '1.0.2', + 'dumb_init_version': '1.2.0', 'packages': { 'ca-certificates', 'curl',