aboutsummaryrefslogtreecommitdiff
path: root/contrib/ci/Containerfile
blob: a69c35f7ee6216e572de9d0b3a94873952664b28 (plain) (blame)
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
41
42
43
44
45
FROM docker.io/library/debian:bookworm

ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update -yqq && \
    apt-get upgrade -yqq && \
    apt-get install -yqq \
                   git \
		   autoconf \
		   libextractor-dev \
		   libjansson-dev \
		   libgcrypt-dev \
		   libqrencode-dev \
		   libpq-dev \
                   libmicrohttpd-dev \
		   pkg-config \
                   libtool \
                   recutils \
		   make \
		   python3-sphinx \
		   python3-sphinx-book-theme \
		   python3-sphinx-multiversion \
                   python3-sphinx-rtd-theme \
                   texinfo \
		   autopoint \
		   curl \
                   libcurl4-openssl-dev \
                   libsodium-dev \
		   libidn11-dev \
		   zlib1g-dev \
		   libunistring-dev \
		   iptables

# Debian packaging tools
RUN apt-get install -yqq \
                   po-debconf \
                   build-essential \
                   debhelper-compat \
                   devscripts \
                   git-buildpackage \
   && rm -rf /var/lib/apt/lists/*

WORKDIR /workdir

CMD ["/bin/bash"]