1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
# bump this to recreate the image: 2
FROM debian:bookworm-slim
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get -y update
RUN apt-get -y upgrade
RUN apt-get -y --no-install-recommends install \
build-essential \
flex \
bison \
autoconf \
git \
pandoc \
ncurses-dev \
libreadline-dev \
libssh-gcrypt-dev \
linuxdoc-tools-latex \
texlive-latex-extra \
groff \
opensp \
docbook-xsl \
xsltproc
RUN apt-get -y --no-install-recommends install \
dpkg-dev \
debhelper \
apt-utils \
quilt \
python3 \
python3-pip \
python3-setuptools \
python3-venv
|