2019-11-27 02:33:01 +08:00
|
|
|
FROM debian:buster-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 06:20:36 +08:00
|
|
|
RUN apt-get -y --no-install-recommends install \
|
2019-11-27 02:33:01 +08:00
|
|
|
build-essential \
|
|
|
|
flex \
|
|
|
|
bison \
|
2021-05-20 01:10:09 +08:00
|
|
|
autoconf \
|
2019-11-27 02:33:01 +08:00
|
|
|
ncurses-dev \
|
2021-04-23 06:20:36 +08:00
|
|
|
libreadline-dev \
|
|
|
|
libssh-gcrypt-dev \
|
2021-04-25 09:37:54 +08:00
|
|
|
linuxdoc-tools-latex \
|
|
|
|
texlive-latex-extra \
|
2021-04-23 06:20:36 +08:00
|
|
|
opensp \
|
|
|
|
docbook-xsl \
|
|
|
|
xsltproc
|
|
|
|
RUN apt-get -y --no-install-recommends install \
|
|
|
|
git \
|
|
|
|
dpkg-dev \
|
|
|
|
debhelper \
|
|
|
|
quilt \
|
|
|
|
python3 \
|
|
|
|
python3-pip \
|
|
|
|
python3-setuptools
|