From 9147349b3822efb69b87568d0bf6eaec82665acc Mon Sep 17 00:00:00 2001 From: Thomas E Lackey Date: Mon, 15 Jan 2024 15:21:26 -0600 Subject: [PATCH] Add jq, wget, and curl by default. --- act-runner/Dockerfile.task-executor | 2 ++ 1 file changed, 2 insertions(+) diff --git a/act-runner/Dockerfile.task-executor b/act-runner/Dockerfile.task-executor index 889adc3..926019f 100644 --- a/act-runner/Dockerfile.task-executor +++ b/act-runner/Dockerfile.task-executor @@ -28,6 +28,8 @@ RUN set -uex; \ RUN apt update && apt install -y docker-ce && rm -rf /var/lib/apt/lists/* # Install sudo because some actions projects assume it is present, and it is present in GitHub runners RUN apt update && apt install -y sudo +# Make sure we have some other basic tools that scripts expect. +RUN apt update && apt install -y wget curl jq # Install software-properties-common so we have the add-apt-repository command, used by some actions to add a package repo RUN apt update && apt install -y software-properties-common -- 2.45.2