diff --git a/images/actions/act/Dockerfile b/images/actions/act/Dockerfile index f4c2839..1deb517 100644 --- a/images/actions/act/Dockerfile +++ b/images/actions/act/Dockerfile @@ -1,10 +1,11 @@ FROM registry.opensuse.org/opensuse/leap:15.5 -RUN zypper -n install sudo docker git wget curl zip unzip nodejs20 +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 useradd -u 1001 runner RUN echo "runner ALL=(ALL:ALL) NOPASSWD:ALL" > /etc/sudoers.d/runner -RUN usermod -aG docker runner +RUN usermod -G docker -a runner WORKDIR /home/runner USER runner \ No newline at end of file