From d8ba4a1a401b84e0f8cd0a61aa1ec8f259317e81 Mon Sep 17 00:00:00 2001 From: kjeld Schouten-Lebbing Date: Mon, 6 Sep 2021 00:27:14 +0200 Subject: [PATCH] use apt-get -y --- containers/apps/sogo/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/apps/sogo/Dockerfile b/containers/apps/sogo/Dockerfile index 32a6eaded89..361b7c2ffad 100644 --- a/containers/apps/sogo/Dockerfile +++ b/containers/apps/sogo/Dockerfile @@ -79,8 +79,8 @@ RUN --mount=type=bind,from=builder,source=/buildtmp/vendor/output,target=/build mkdir /usr/share/doc/sogo && \ touch /usr/share/doc/sogo/empty.sh && \ cd /build && \ - apt-get install $(apt-cache depends sogo | sed 's/<[^>]*>//g' | awk '$1~/Depends/{printf $2" "}') && \ - apt install ./*.deb && \ + apt-get -y install $(apt-cache depends sogo | sed 's/<[^>]*>//g' | awk '$1~/Depends/{printf $2" "}') && \ + apt install -y ./*.deb && \ apt-get install -f && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \