From 310ba02dcbcc6a09865e920e4c9286cd62df23ce Mon Sep 17 00:00:00 2001 From: Sebastian Yaghoubi Date: Thu, 26 Dec 2024 14:10:31 -0800 Subject: [PATCH] fix(docker): run apt as non-interactive Signed-off-by: Sebastian Yaghoubi --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 370aa53..7ef8bfd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,7 @@ FROM python:3.13-slim-bullseye +ENV DEBIAN_FRONTEND=noninteractive + ARG INSTALL_GIT=false RUN if [ "$INSTALL_GIT" = "true" ]; then \ apt-get update && apt-get install -y --no-install-recommends \