From 247ec715e758bc70671099e42947f3bb8e7c91f4 Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Fri, 19 Jun 2020 13:34:25 +0200 Subject: [PATCH] Make shipped mail notification scripts working refs #9 --- deps.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps.Dockerfile b/deps.Dockerfile index 1173dd5..1ae4a4c 100644 --- a/deps.Dockerfile +++ b/deps.Dockerfile @@ -1,5 +1,5 @@ FROM debian:buster-slim -RUN ["/bin/bash", "-exo", "pipefail", "-c", "apt-get update; apt-get install --no-install-{recommends,suggests} -y libboost-{context,coroutine,date-time,filesystem,program-options,regex,system,thread}1.67 libedit2 libmariadb3 libpq5 libssl1.1; apt-get clean; rm -vrf /var/lib/apt/lists/*"] +RUN ["/bin/bash", "-exo", "pipefail", "-c", "export DEBIAN_FRONTEND=noninteractive; apt-get update; apt-get install --no-install-{recommends,suggests} -y libboost-{context,coroutine,date-time,filesystem,program-options,regex,system,thread}1.67 libedit2 libmariadb3 libpq5 libssl1.1 mailutils postfix; apt-get clean; rm -vrf /var/lib/apt/lists/*"] RUN ["adduser", "--system", "--group", "--home", "/var/lib/icinga2", "--disabled-login", "--force-badname", "--no-create-home", "icinga"]