summaryrefslogtreecommitdiff
path: root/.gitlab/ci/fedora.Dockerfile
blob: 6aea2bccb5af941b83fad9ac2f9c545c55b2185c (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
FROM fedora:36

RUN dnf -y install \
        ccache \
        clang \
        clang-analyzer \
        gcc \
        gcc-c++ \
        gettext \
        gettext-devel \
        git \
        glib2-devel \
        gobject-introspection-devel \
        gtk-doc \
        itstool \
        jasper-devel \
        lcov \
        libasan \
        libjpeg-turbo-devel \
        libpng-devel \
        libtiff-devel \
        libX11-devel \
        meson \
        python3 \
        python3-docutils \
        python3-jinja2 \
        python3-markdown \
        python3-pip \
        python3-pygments \
        python3-toml \
        python3-typogrify \
        python3-wheel \
        redhat-rpm-config \
        shared-mime-info \
        which \
 && dnf clean all

RUN pip3 install meson==0.56.0

ARG HOST_USER_ID=5555
ENV HOST_USER_ID ${HOST_USER_ID}
RUN useradd -u $HOST_USER_ID -ms /bin/bash user

USER user
WORKDIR /home/user

ENV LANG C.UTF-8