mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-10 05:08:42 +00:00
13 lines
286 B
Docker
13 lines
286 B
Docker
|
FROM i386/debian:stretch-slim
|
||
|
ENV DEBIAN_FRONTEND noninteractive
|
||
|
RUN sed -i 's/deb.debian.org/ftp.cz.debian.org/' /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
|