From 6a0e59c8d90ca6a7f797a2eb2db7f806bef59281 Mon Sep 17 00:00:00 2001 From: Snoweuph Date: Sat, 10 Feb 2024 21:39:54 +0100 Subject: [PATCH] NOTICKET: Setup --- images/actions/act/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/actions/act/Dockerfile b/images/actions/act/Dockerfile index c494aca..ca9a86e 100644 --- a/images/actions/act/Dockerfile +++ b/images/actions/act/Dockerfile @@ -2,11 +2,11 @@ FROM registry.access.redhat.com/ubi9/ubi-init RUN yum -y install openssh-clients shadow-utils sudo wget git zip unzip xz nodejs npm -RUN adduser -m -p "password" --uid 1001 runner\ +RUN adduser -m --uid 1001 runner \ && groupadd docker --gid 123 \ && usermod -aG docker runner \ && usermod -aG wheel runner \ - && echo "%sudo ALL=(ALL:ALL) NOPASSWD:ALL" > /etc/sudoers + && echo "%weel ALL=(ALL:ALL) NOPASSWD:ALL" > /etc/sudoers WORKDIR /home/runner