ARG DEBIAN_FRONTEND=noninteractive ARG REPO=http://cdn-fastly.deb.debian.org RUN \ bash -c "echo \"deb $REPO/debian stretch main contrib non-free\" > /etc/apt/sources.list" && \ bash -c "echo \"deb $REPO/debian stretch-updates main contrib non-free\" >> /etc/apt/sources.list" && \ bash -c "echo \"deb $REPO/debian-security stretch/updates 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 install --no-install-recommends --yes \ autogen \ automake \ bash \ bc \ bison \ build-essential \ bzip2 \ ca-certificates \ curl \ dirmngr \ file \ flex \ gettext \ gzip \ gnupg \ initramfs-tools \ libncurses5 \ libtool \ make \ ncurses-dev \ pkg-config \ pax \ python \ python-pip \ rsync \ sed \ ssh \ tar \ vim \ wget \ xz-utils \ zip \ zlib1g-dev \ && \ apt-get clean --yes