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"]