From bdca6bcb4fc78076b8f3a5c7fec3493f4a07b126 Mon Sep 17 00:00:00 2001 From: kjeld Schouten-Lebbing Date: Mon, 6 Sep 2021 00:24:28 +0200 Subject: [PATCH] automatically try to fix any missing dependencies in the future for sogo --- containers/apps/sogo/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/containers/apps/sogo/Dockerfile b/containers/apps/sogo/Dockerfile index e54ce0359ec..32a6eaded89 100644 --- a/containers/apps/sogo/Dockerfile +++ b/containers/apps/sogo/Dockerfile @@ -79,6 +79,7 @@ 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 install -f && \ apt-get clean && \