Docker: Pass `--no-install-recommends` to `apt-get intall`

This commit is contained in:
Richard Hansen 2021-06-17 21:16:01 -04:00
parent d4e201b1b0
commit 2a367f6171
1 changed files with 1 additions and 1 deletions

View File

@ -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} \
&& \