From cd4cfd8c58e83235d8d3ef700f55cb3e8e58bd62 Mon Sep 17 00:00:00 2001 From: Gabriela Cervantes Date: Wed, 24 May 2023 16:23:51 +0000 Subject: [PATCH] stability: Update stressng dockerfile This PR updates the stressng dockerfile in order to avoid that when installing the packages we have an interactive mode. Fixes #5657 Signed-off-by: Gabriela Cervantes --- stability/stressng_dockerfile/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stability/stressng_dockerfile/Dockerfile b/stability/stressng_dockerfile/Dockerfile index 1581d5108..b17002c1e 100644 --- a/stability/stressng_dockerfile/Dockerfile +++ b/stability/stressng_dockerfile/Dockerfile @@ -7,6 +7,8 @@ FROM ubuntu:20.04 # Version of the Dockerfile LABEL DOCKERFILE_VERSION="1.0" +ENV DEBIAN_FRONTEND=noninteractive + RUN apt-get update && \ apt-get install -y --no-install-recommends sudo build-essential curl && \ apt-get remove -y unattended-upgrades && \