From 9f60c135d95a6eec2af476d135fb03e2d8636eb2 Mon Sep 17 00:00:00 2001 From: ai-dev Date: Sun, 3 Nov 2024 10:48:27 +0100 Subject: [PATCH] add the install of node.js --- gitea_act_runner/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitea_act_runner/Dockerfile b/gitea_act_runner/Dockerfile index 913260b..4130699 100644 --- a/gitea_act_runner/Dockerfile +++ b/gitea_act_runner/Dockerfile @@ -18,7 +18,7 @@ ARG ACT_RUNNER_VERSION="0.2.11" COPY rootfs / # Install necessary dependencies -RUN apk add --no-cache git docker-cli python3 py3-pip +RUN apk add --no-cache git docker-cli python3 py3-pip nodejs npm # Download and rename the act_runner binary RUN curl -L -o /usr/local/bin/act_runner https://gitea.com/gitea/act_runner/releases/download/v${ACT_RUNNER_VERSION}/act_runner-${ACT_RUNNER_VERSION}-linux-${BUILD_ARCH} && \