-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial bird v3 image for testing.
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM debian:stable-slim | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends \ | ||
git autoconf automake libtool pkg-config \ | ||
build-essential gcc binutils m4 make perl bison flex \ | ||
libncurses5-dev libreadline-dev libssh-dev \ | ||
ca-certificates && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR /tmp | ||
RUN git clone https://gitlab.nic.cz/labs/bird.git && \ | ||
cd bird && \ | ||
git checkout v3.0.0 && \ | ||
autoreconf -fi && \ | ||
./configure --prefix=/usr --sysconfdir=/etc --runstatedir=/run && \ | ||
make && \ | ||
make install | ||
|
||
RUN mkdir -p /etc /run | ||
|
||
CMD ["bird","-c","/etc/bird.conf"] |