Files

27 lines
546 B
Docker
Raw Permalink Normal View History

2017-08-17 15:02:35 +02:00
FROM debian:stretch-slim
ENV DEBIAN_FRONTEND noninteractive
RUN sed -i 's/deb.debian.org/ftp.cz.debian.org/' /etc/apt/sources.list
RUN apt-get -y update
RUN apt-get -y upgrade
2021-04-23 00:20:36 +02:00
RUN apt-get -y --no-install-recommends install \
2017-08-17 15:02:35 +02:00
build-essential \
flex \
bison \
2021-05-19 19:10:09 +02:00
autoconf \
2017-08-17 15:02:35 +02:00
ncurses-dev \
2021-04-23 00:20:36 +02:00
libreadline-dev \
libssh-gcrypt-dev \
linuxdoc-tools-latex \
texlive-latex-extra \
2021-04-23 00:20:36 +02:00
opensp \
docbook-xsl \
xsltproc
RUN apt-get -y --no-install-recommends install \
git \
dpkg-dev \
debhelper \
quilt \
python3 \
python3-pip \
python3-setuptools