mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-08 17:50:10 +00:00
9bac129707
It turns out that the sysprof meson setup does not work with meson 0.54 :( So version 25 of our ci images bumps the meson version to 0.55.3.
13 lines
236 B
Docker
13 lines
236 B
Docker
FROM registry.gitlab.gnome.org/gnome/gtk/fedora-base:v25
|
|
|
|
RUN dnf -y install pandoc
|
|
|
|
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
|