Files

26 lines
551 B
Docker
Raw Permalink Normal View History

2021-04-21 13:22:23 +02:00
FROM i386/debian:bullseye-slim
ENV DEBIAN_FRONTEND=noninteractive
2019-11-26 19:33:01 +01:00
RUN sed -i 's/deb.debian.org/ftp.cz.debian.org/' /etc/apt/sources.list
2021-04-21 13:22:23 +02:00
RUN apt-get -y update && apt-get -y upgrade
2021-05-19 19:10:09 +02:00
RUN apt-get -y --no-install-recommends install \
2019-11-26 19:33:01 +01:00
build-essential \
flex \
bison \
2021-05-19 19:10:09 +02:00
autoconf \
2019-11-26 19:33:01 +01:00
ncurses-dev \
2021-05-19 19:10:09 +02:00
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