mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2025-02-02 14:20:01 +00:00
2278de024f
By default, Ubuntu or Debian based "apt" or "apt-get" system installs recommended but not suggested packages . By passing "--no-install-recommends" option, the user lets apt-get know not to consider recommended packages as a dependency to install. This results in smaller downloads and installation of packages . Refer to blog at [Ubuntu Blog](https://ubuntu.com/blog/we-reduced-our-docker-images-by-60-with-no-install-recommends) . Signed-off-by: Pratik Raj <rajpratik71@gmail.com>
14 lines
457 B
Docker
14 lines
457 B
Docker
FROM debian:wheezy-slim
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
RUN echo 'deb http://archive.debian.org/debian/ wheezy main' > /etc/apt/sources.list
|
|
RUN echo 'deb http://archive.debian.org/debian-security/ wheezy/updates main' >> /etc/apt/sources.list
|
|
RUN apt-get -y update -o Acquire::Check-Valid-Until=false
|
|
RUN apt-get -y upgrade
|
|
RUN apt-get --no-install-recommends install -y \
|
|
autoconf \
|
|
build-essential \
|
|
flex \
|
|
bison \
|
|
ncurses-dev \
|
|
libreadline-dev
|