From 9f9bfb6983acb40a0af4691b64ff7ec603e0253b Mon Sep 17 00:00:00 2001 From: innovaker <66737976+innovaker@users.noreply.github.com> Date: Thu, 3 Dec 2020 04:57:49 +0000 Subject: [PATCH] feat: add DEBIAN_FRONTEND=noninteractive For common and build only. Changes back to interactive at the end of dev for end-user (developers) convenience. Based on discussions with KemoNine. --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 85d86cf..cb17b18 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,8 @@ FROM debian:stable-20201117-slim AS common CMD ["/bin/bash"] +ENV DEBIAN_FRONTEND=noninteractive + ARG REPOSITORY_URL=https://github.com/innovaker/zmk-docker LABEL org.opencontainers.image.source ${REPOSITORY_URL} @@ -55,6 +57,8 @@ RUN \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* +ENV DEBIAN_FRONTEND= + #------------------------------------------------------------------------------ FROM common AS build