ci: Add sudo support for default Fedora docker user

This commit is contained in:
Bastien Nocera 2019-11-20 14:54:09 +01:00 committed by Philip Withnall
parent aa8908f469
commit fd4d68615f

View File

@ -57,9 +57,12 @@ RUN dnf -y install \
RUN pip3 install meson==0.49.2
# 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 -ms /bin/bash user
RUN useradd -u $HOST_USER_ID -G wheel -ms /bin/bash user
USER user
WORKDIR /home/user