summaryrefslogtreecommitdiff
path: root/.gitlab-ci/Dockerfile
blob: 541707912b659cb209ba5f124e1454266ce2cd9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM fedora:29

RUN dnf -y update && dnf -y upgrade && \
    dnf install -y 'dnf-command(builddep)' && \
    dnf builddep -y mutter && \

# Until Fedora catches up with meson build-deps
    dnf install -y meson xorg-x11-server-Xorg gnome-settings-daemon-devel egl-wayland-devel xorg-x11-server-Xwayland && \

# To enable testing headless
    dnf install -y xorg-x11-server-Xvfb && \

    dnf install -y intltool redhat-rpm-config make && \
    dnf clean all