This commit is contained in:
parent
964eb938f5
commit
f126a36c1b
1 changed files with 7 additions and 4 deletions
|
@ -1,11 +1,14 @@
|
|||
FROM registry.opensuse.org/opensuse/leap:15.5
|
||||
|
||||
RUN zypper addrepo https://download.opensuse.org/repositories/devel:languages:python/15.5/devel:languages:python.repo zypper refresh
|
||||
RUN zypper -n install sudo docker python3-docker-compose git wget curl zip unzip nodejs20
|
||||
|
||||
RUN zypper -n install docker
|
||||
RUN useradd -u 1001 runner
|
||||
RUN usermod -aG docker runner
|
||||
|
||||
RUN zypper -n install sudo
|
||||
RUN echo "runner ALL=(ALL:ALL) NOPASSWD:ALL" > /etc/sudoers.d/runner
|
||||
RUN usermod -G docker -a runner
|
||||
|
||||
RUN zypper -n install git wget curl zip unzip nodejs20
|
||||
|
||||
WORKDIR /home/runner
|
||||
|
||||
USER runner
|
Loading…
Reference in a new issue