T1892: docker: do not install recommended packages

This commit is contained in:
Jernej Jakob 2019-12-11 20:17:56 +01:00
parent 62263272f2
commit 9266d92374

View File

@ -25,6 +25,8 @@ ENV DEBIAN_FRONTEND noninteractive
RUN echo "dash dash/sh boolean false" | debconf-set-selections && \
dpkg-reconfigure dash
RUN echo -e 'APT::Install-Recommends "0";\nAPT::Install-Suggests "0";' > /etc/apt/apt.conf.d/01norecommends
RUN apt-get update && apt-get install -y \
dialog \
apt-utils \
@ -37,15 +39,14 @@ RUN apt-get update && apt-get install -y \
vim \
git \
curl \
make \
sudo \
mc \
build-essential \
pbuilder \
devscripts \
squashfs-tools \
autoconf \
automake \
dpkg-dev \
syslinux \
genisoimage \
lsb-release \