NOTICKET: Setup
All checks were successful
CI / build (push) Successful in 1m10s

This commit is contained in:
Snoweuph 2024-02-10 20:04:09 +01:00
parent 4f01e66133
commit b0c8617ef3
Signed by: Snoweuph
GPG key ID: A494330694B208EF

View file

@ -1,14 +1,10 @@
FROM registry.access.redhat.com/ubi9/ubi-init
# Install Required Dependencies for Runner
RUN yum -y install openssh-clients
RUN yum -y install wget
RUN yum -y install git
RUN yum -y install zip
RUN yum -y install unzip
RUN yum -y install xz
RUN yum -y install nodejs18
RUN yum -y install nodejs18-npm
RUN yum -y install openssh-clients shadow-utils wget git zip unzip xz nodejs npm
RUN adduser -p "password" --uid 1001 runner && passwd -d runner\
&& groupadd docker --gid 123 \
&& usermod -aG docker runner
# Set User to Runner
USER runner