blob: db8eb51a42800290cd4e4207d7c89d6f6e07bc5a (
plain)
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
31
32
33
34
35
36
37
38
39
40
|
FROM debian:stable-slim
MAINTAINER Knot DNS <knot-dns@labs.nic.cz>
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 dist-upgrade
RUN apt-get -y install \
apt-utils \
autoconf \
automake \
autotools-dev \
build-essential \
clang \
curl \
ghostscript \
git \
latexmk \
libedit-dev \
libfstrm-dev \
libgnutls28-dev \
libidn2-0-dev \
liblmdb-dev \
libmaxminddb-dev \
libprotobuf-c-dev \
libsystemd-dev \
libtool \
liburcu-dev \
llvm \
locales-all \
osc \
pkg-config \
protobuf-c-compiler \
python-sphinx \
texinfo \
texlive \
texlive-font-utils \
texlive-generic-extra \
texlive-latex-extra \
unzip \
xxd
|