mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2025-01-18 06:51:54 +00:00
26 lines
515 B
Docker
26 lines
515 B
Docker
# bump number for image rebuild: 2
|
|
FROM i386/debian:bullseye-slim
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
RUN apt-get -y update && apt-get -y upgrade
|
|
RUN apt-get -y --no-install-recommends install \
|
|
build-essential \
|
|
flex \
|
|
bison \
|
|
autoconf \
|
|
ncurses-dev \
|
|
libreadline-dev \
|
|
libssh-gcrypt-dev \
|
|
linuxdoc-tools-latex \
|
|
texlive-latex-extra \
|
|
opensp \
|
|
docbook-xsl \
|
|
xsltproc
|
|
RUN apt-get -y --no-install-recommends install \
|
|
git \
|
|
dpkg-dev \
|
|
debhelper \
|
|
quilt \
|
|
python3 \
|
|
python3-pip \
|
|
python3-setuptools
|