forked from AuroraMiddleware/gtk
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.
14 lines
333 B
Docker
14 lines
333 B
Docker
FROM registry.gitlab.gnome.org/gnome/gtk/fedora-base:v25
|
|
|
|
# Enable sudo for wheel users
|
|
RUN sed -i -e 's/# %wheel/%wheel/' -e '0,/%wheel/{s/%wheel/# %wheel/}' /etc/sudoers
|
|
|
|
ARG HOST_USER_ID=5555
|
|
ENV HOST_USER_ID ${HOST_USER_ID}
|
|
RUN useradd -u $HOST_USER_ID -G wheel -ms /bin/bash user
|
|
|
|
USER user
|
|
WORKDIR /home/user
|
|
|
|
ENV LANG C.UTF-8
|