From 2a367f61719649a5db0eae3bdfbc08d7a1d88572 Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Thu, 17 Jun 2021 21:16:01 -0400 Subject: [PATCH] Docker: Pass `--no-install-recommends` to `apt-get intall` --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c546ea0fe..7e6b27619 100644 --- a/Dockerfile +++ b/Dockerfile @@ -61,7 +61,7 @@ RUN [ -n "${INSTALL_ABIWORD}${INSTALL_SOFFICE}" ] || exit 0; \ export DEBIAN_FRONTEND=noninteractive; \ mkdir -p /usr/share/man/man1 && \ apt-get -qq update && \ - apt-get -qq install \ + apt-get -qq --no-install-recommends install \ ${INSTALL_ABIWORD:+abiword} \ ${INSTALL_SOFFICE:+libreoffice} \ && \