mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 20:28:43 +00:00
12 lines
154 B
Docker
12 lines
154 B
Docker
|
FROM fedora:29
|
||
|
RUN dnf -y upgrade
|
||
|
RUN dnf -y install \
|
||
|
make \
|
||
|
autoconf \
|
||
|
flex \
|
||
|
bison \
|
||
|
pkgconfig \
|
||
|
'readline-devel' \
|
||
|
'pkgconfig(ncurses)' \
|
||
|
gcc
|