From 03d4666efc301d70502268c30bb7ff7e8b18dbeb Mon Sep 17 00:00:00 2001 From: Snoweuph Date: Sat, 13 Jul 2024 11:04:41 +0000 Subject: [PATCH] images/actions/act/Dockerfile aktualisiert --- images/actions/act/Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/images/actions/act/Dockerfile b/images/actions/act/Dockerfile index 7b1f293..e950dee 100644 --- a/images/actions/act/Dockerfile +++ b/images/actions/act/Dockerfile @@ -1,17 +1,16 @@ FROM frolvlad/alpine-glibc:latest RUN apk add --update --no-cache \ -bash sudo ca-certificates openssl openssh-client \ +bash sudo ca-certificates openssl openssh-client ibstdc++6 \ git git-lfs wget curl \ zip unzip xz zstd jq \ nodejs python3 py3-pip +RUN curl https://get.volta.sh | bash && . ~/.profile RUN adduser -D runner \ && echo "runner ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/runner \ && chmod 0440 /etc/sudoers.d/runner - RUN chmod -R 777 /opt - WORKDIR /home/runner CMD ["/bin/bash"]