mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2025-03-18 20:37:05 +00:00
Fedora builds for 32-41, Debian up to 12, Ubuntu up to 24.10. Includes autorebuilder if a Dockerfile changes. The CI file is obnoxiously boilerplaty. TODO: generate it from a list?
12 lines
210 B
Docker
12 lines
210 B
Docker
FROM debian:testing-slim
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
RUN apt-get -y update
|
|
RUN apt-get -y upgrade
|
|
RUN apt-get -y install \
|
|
build-essential \
|
|
flex \
|
|
bison \
|
|
autoconf \
|
|
ncurses-dev \
|
|
libreadline-dev
|