From 33626039fd89db38900fd78276811f024de12dfb Mon Sep 17 00:00:00 2001 From: Ian Hinder Date: Tue, 17 Sep 2024 10:38:52 +0100 Subject: [PATCH] Dockerfile: Add DEBIAN_FRONTEND=noninteractive to avoid hang --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index d1abdd1..d5c7e57 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,8 @@ FROM ubuntu:20.04 # Maintainer of the docker image, not the code! MAINTAINER "Ian Hinder " +ARG DEBIAN_FRONTEND=noninteractive + RUN apt-get update -y && \ apt-get install -y python3 python3-pip python3-requests graphviz libgraphviz-dev curl && \ rm -rf /var/lib/apt/lists/*