aboutsummaryrefslogtreecommitdiff
path: root/contrib/ci/riscv64.Containerfile
blob: 02a1b8bb8988851fa17fe431f2055084e9b580ae (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
41
42
43
44
45
46
# This file is separate as trixie does not offer a stable riscv on docker yet.
FROM docker.io/library/debian:unstable

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"]