mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-23 10:11:53 +00:00
13 lines
296 B
Docker
13 lines
296 B
Docker
FROM i386/debian:wheezy-slim
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
RUN echo 'http://archive.debian.org/debian/dists/wheezy/' > /etc/apt/sources.list
|
|
RUN apt-get -y update
|
|
RUN apt-get -y upgrade
|
|
RUN apt-get -y install \
|
|
autoconf \
|
|
build-essential \
|
|
flex \
|
|
bison \
|
|
ncurses-dev \
|
|
libreadline-dev
|