From a7b4b882c6918c47c6fd2dcb253e1c03b172777e Mon Sep 17 00:00:00 2001 From: ange Date: Thu, 7 Mar 2024 17:57:19 +0100 Subject: [PATCH] fix: DEBIAN_FRONTEND=noninteractive --- bazarr/Dockerfile | 3 ++- bind9/Dockerfile | 1 + fdroid/Dockerfile | 1 + mail/dovecot/Dockerfile | 1 + mail/postfix/Dockerfile | 1 + matrix/coturn/Dockerfile | 1 + 6 files changed, 7 insertions(+), 1 deletion(-) diff --git a/bazarr/Dockerfile b/bazarr/Dockerfile index 1889aeb..66e9e67 100644 --- a/bazarr/Dockerfile +++ b/bazarr/Dockerfile @@ -1,5 +1,6 @@ FROM docker.io/python:3.12-slim as base -ENV VIRTUAL_ENV="/opt/venv" \ +ENV DEBIAN_FRONTEND=noninteractive \ + VIRTUAL_ENV="/opt/venv" \ PATH="/opt/venv/bin:$PATH" WORKDIR /app/ diff --git a/bind9/Dockerfile b/bind9/Dockerfile index 17e5507..1ff9462 100644 --- a/bind9/Dockerfile +++ b/bind9/Dockerfile @@ -1,4 +1,5 @@ FROM docker.io/debian:12-slim +ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update \ && apt-get install -y --no-install-recommends \ bind9 \ diff --git a/fdroid/Dockerfile b/fdroid/Dockerfile index d77ab2b..dfd760e 100644 --- a/fdroid/Dockerfile +++ b/fdroid/Dockerfile @@ -1,4 +1,5 @@ FROM docker.io/nginx:latest +ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update \ && apt-get install -y --no-install-recommends \ cron \ diff --git a/mail/dovecot/Dockerfile b/mail/dovecot/Dockerfile index a323aef..4ce1f1a 100644 --- a/mail/dovecot/Dockerfile +++ b/mail/dovecot/Dockerfile @@ -1,4 +1,5 @@ FROM docker.io/debian:12-slim +ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update \ && apt-get install -y --no-install-recommends \ dovecot-imapd \ diff --git a/mail/postfix/Dockerfile b/mail/postfix/Dockerfile index 3d1855e..5b216bb 100644 --- a/mail/postfix/Dockerfile +++ b/mail/postfix/Dockerfile @@ -1,4 +1,5 @@ FROM docker.io/debian:12-slim +ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update \ && apt-get install -y --no-install-recommends \ postfix \ diff --git a/matrix/coturn/Dockerfile b/matrix/coturn/Dockerfile index e67c35e..7beb9b8 100644 --- a/matrix/coturn/Dockerfile +++ b/matrix/coturn/Dockerfile @@ -1,4 +1,5 @@ FROM docker.io/coturn/coturn:4.6 +ENV DEBIAN_FRONTEND=noninteractive USER root RUN apt-get update \ && apt-get install -y --no-install-recommends \