summaryrefslogtreecommitdiff
path: root/.gitlab-ci/fedora-latest.Dockerfile
blob: 2faf441cd57add10e8c4c7c6c5182988460d8264 (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
FROM fedora:latest

RUN dnf -y install \
    at-spi2-atk-devel \
    ccache \
    dbus-x11 \
    gcc \
    gcc-c++ \
    gettext \
    gettext-devel \
    git \
    glib2-devel \
    gobject-introspection-devel \
    gtk-doc \
    iso-codes \
    itstool \
    make \
    meson \
    ninja-build \
    python3 \
    python3-pip \
    python3-wheel \
    redhat-rpm-config \
    wayland-devel \
    wayland-protocols-devel \
    xorg-x11-server-Xvfb \
    && dnf clean all

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

RUN pip3 install --user meson==0.49.2

ENV LANG C.utf8