From d29c5b3eabc6fe3b761c307afd94348001586f70 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Wed, 18 Mar 2026 23:25:44 -0400 Subject: [PATCH] fix: suppress debconf frontend warnings during apt-get install --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e163ef5..2ce1a86 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM python:3.11-slim -RUN apt-get update \ - && apt-get install -y --no-install-recommends iputils-ping \ +RUN DEBIAN_FRONTEND=noninteractive apt-get update \ + && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends iputils-ping \ && rm -rf /var/lib/apt/lists/* # Upgrade pip to suppress the version notice