From f579e4a635c6e8f3269f529241d7187be367d64f Mon Sep 17 00:00:00 2001 From: Chad Swenson Date: Fri, 13 Jul 2018 16:35:39 -0500 Subject: [PATCH] Add bash to Dockerfile for custom-plugin-monitors Utilizes the clean-install script from the debian-base image Fixes #185 --- Dockerfile.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile.in b/Dockerfile.in index 604d2f28..2fc0993e 100644 --- a/Dockerfile.in +++ b/Dockerfile.in @@ -15,6 +15,8 @@ FROM @BASEIMAGE@ MAINTAINER Random Liu +RUN clean-install bash + # Avoid symlink of /etc/localtime. RUN test -h /etc/localtime && rm -f /etc/localtime && cp /usr/share/zoneinfo/UTC /etc/localtime || true