mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2025-01-11 19:41:54 +00:00
15 lines
438 B
Docker
15 lines
438 B
Docker
FROM debian:wheezy-slim
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
RUN cat /etc/apt/sources.list
|
|
# RUN sed -i 's/deb.debian.org\/debian wheezy main/archive.debian.org\/debian\/dists\/wheezy/' /etc/apt/sources.list
|
|
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
|