summaryrefslogtreecommitdiff
path: root/docker/biboumi-test/fedora/Dockerfile
blob: 8ff418c292b14733eda1d6bb98811f6e1c7b164f (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# This Dockerfile creates a docker image suitable to run biboumi’s build and
# tests.  For example, it can be used on with gitlab-ci.

FROM docker.io/fedora:latest

ENV LC_ALL C.UTF-8

RUN dnf --refresh install -y\
    gcc-c++\
    clang\
    valgrind\
    udns-devel\
    c-ares-devel\
    sqlite-devel\
    libuuid-devel\
    libgcrypt-devel\
    cmake\
    make\
    expat-devel\
    libidn-devel\
    uuid-devel\
    systemd-devel\
    pandoc\
    libasan\
    libubsan\
    git\
    fedora-packager\
    python3-lxml\
    lcov\
    rpmdevtools\
    python3-devel\
    automake\
    autoconf\
    flex\
    flex-devel\
    bison\
    libtool-ltdl-devel\
    libtool\
    openssl-devel\
    which\
    java-1.8.0-openjdk\
    && dnf clean all

# Install botan
RUN git clone https://github.com/randombit/botan.git && cd botan && ./configure.py --prefix=/usr && make -j8 && make install && ldconfig && rm -rf /botan

# Install slixmpp, for e2e tests
RUN git clone git://git.louiz.org/slixmpp && pip3 install pyasn1 && cd slixmpp && python3 setup.py build && python3 setup.py install

RUN useradd tester

# Install charybdis, for e2e tests
RUN git clone https://github.com/charybdis-ircd/charybdis.git && cd charybdis && cd /charybdis && git checkout 4f2b9a4 && sed s/113/1113/ -i /charybdis/authd/providers/ident.c && ./autogen.sh && ./configure --prefix=/home/tester/ircd --bindir=/usr/bin --with-included-boost && make -j8 && make install && rm -rf /charybdis

RUN chown -R tester:tester /home/tester/ircd

USER tester

RUN yes "" | openssl req -nodes -x509 -newkey rsa:4096 -keyout /home/tester/ircd/etc/ssl.key -out /home/tester/ircd/etc/ssl.pem

COPY coverity /home/tester/coverity

WORKDIR /home/tester