summaryrefslogtreecommitdiff
path: root/.gitlab-ci/fedora.Dockerfile
blob: c64f0947b7cb365b7a512548981fed6898a685d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM registry.gitlab.gnome.org/gnome/gtk/fedora-base:v28

# 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