mirror of
https://gitlab.nic.cz/knot/knot-dns.git
synced 2026-02-03 18:49:28 -05:00
41 lines
742 B
Docker
41 lines
742 B
Docker
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 \
|
|
libelf-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
|