From 087bef8363dd872769d6cacfd57468ffd448a0ce Mon Sep 17 00:00:00 2001 From: Matthew Weier O'Phinney Date: Wed, 22 Dec 2021 09:32:48 -0600 Subject: [PATCH] fix: set DEBIAN_FRONTEND=noninteractive Setting DEBIAN_FRONTEND=noninteractive as a container-level ENV variable, so all apt operations occur in noninteractive shells. Should resolve issues as seen with laminas/laminas-barcode#15 Signed-off-by: Matthew Weier O'Phinney --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index bda7006..985fff0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,7 @@ LABEL "homepage"="http://github.com/laminas/laminas-continuous-integration-actio LABEL "maintainer"="https://github.com/laminas/technical-steering-committee/" ENV COMPOSER_HOME=/usr/local/share/composer +ENV DEBIAN_FRONTEND=noninteractive COPY setup /setup # Base setup