From b0d96789d1f23735d32477941f0575b70c5b8b2d Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Tue, 26 Jul 2022 15:36:45 +0200 Subject: [PATCH] DEBIAN_FRONTEND verschoben --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 645f442..52cfff6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,9 @@ FROM ubuntu:20.04 # install and configure munin -# hadolint ignore=DL3008 +ARG DEBIAN_FRONTEND=noninteractive# hadolint ignore=DL3008 RUN apt-get update -qq \ - DEBIAN_FRONTEND=noninteractive \ - apt-get install -y -qq cron munin nginx apache2 wget libapache2-mod-fcgid libcgi-fast-perl ssmtp mailutils curl tzdata autoconf --no-install-recommends \ + && apt-get install -y -qq cron munin nginx apache2 wget libapache2-mod-fcgid libcgi-fast-perl ssmtp mailutils curl tzdata autoconf --no-install-recommends \ && apt-get clean \ && rm -rf /var/lib/apt/lists/*