Merge pull request #391 from bbros-dev/issue-386

Kernel initrd build support
This commit is contained in:
Jean-Christophe Fillion-Robin 2020-04-15 10:26:33 -04:00 committed by GitHub
commit 3a8d0b9811
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,36 +14,37 @@ RUN \
bash -c "echo \"deb http://ftp.debian.org/debian stretch-backports main\" >> /etc/apt/sources.list" && \ bash -c "echo \"deb http://ftp.debian.org/debian stretch-backports main\" >> /etc/apt/sources.list" && \
apt-get update --yes && \ apt-get update --yes && \
apt-get install --no-install-recommends --yes \ apt-get install --no-install-recommends --yes \
automake \
autogen \ autogen \
automake \
bash \ bash \
build-essential \
bc \ bc \
bison \
build-essential \
bzip2 \ bzip2 \
ca-certificates \ ca-certificates \
curl \ curl \
dirmngr \ dirmngr \
file \ file \
flex \
gettext \ gettext \
gzip \ gzip \
gnupg \ gnupg \
zip \ initramfs-tools \
libtool \
make \ make \
ncurses-dev \ ncurses-dev \
pkg-config \ pkg-config \
libtool \ pax \
python \ python \
python-pip \ python-pip \
rsync \ rsync \
sed \ sed \
ssh \ ssh \
bison \
flex \
tar \ tar \
pax \
vim \ vim \
wget \ wget \
xz-utils \ xz-utils \
zip \
zlib1g-dev \ zlib1g-dev \
&& \ && \
apt-get clean --yes && \ apt-get clean --yes && \