From 4aefaae262c056d23cce24517fde18882bd1ff9f Mon Sep 17 00:00:00 2001 From: Foster Hangdaan Date: Fri, 20 Oct 2023 08:53:11 -0400 Subject: [PATCH] Add environment var for `apt-get` command It specifies that no frontend tty is available. --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 5c40ab9..5a48428 100644 --- a/Containerfile +++ b/Containerfile @@ -47,7 +47,7 @@ LABEL maintainer="Foster Hangdaan " RUN set -ex && \ apt-get update && \ - apt-get --no-install-recommends --yes install ca-certificates && \ + DEBIAN_FRONTEND=noninteractive apt-get --no-install-recommends --yes install ca-certificates && \ apt-get clean && \ rm -rf /var/lib/apt