From 9e003ecd2a53380f4e1aad11cea29f476be8cf58 Mon Sep 17 00:00:00 2001 From: Rodman Date: Sat, 16 Dec 2023 12:46:02 -0800 Subject: [PATCH] fix: packages --- docker-src/Dockerfile | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/docker-src/Dockerfile b/docker-src/Dockerfile index 949d0f8..963fa1a 100644 --- a/docker-src/Dockerfile +++ b/docker-src/Dockerfile @@ -5,6 +5,7 @@ HEALTHCHECK CMD curl --fail http://localhost:8080 || exit 1 #input GitHub runner version argument # ARG RUNNER_VERSION +ARG PACKAGE_LIST ENV DEBIAN_FRONTEND=noninteractive LABEL BaseImage="ubuntu:22.04" @@ -15,7 +16,23 @@ RUN apt-get update -y && apt-get upgrade -y && useradd -m docker # install the packages and dependencies along with jq so we can parse JSON (add additional packages as necessary) RUN apt-get install -y --no-install-recommends \ - curl nodejs wget unzip vim git jq build-essential libssl-dev libffi-dev python3 python3-venv python3-dev python3-pip sudo docker + curl \ + nodejs \ + wget \ + unzip \ + vim \ + git \ + jq \ + build-essential \ + libssl-dev \ + libffi-dev \ + python3 \ + python3-venv \ + python3-dev \ + python3-pip \ + sudo \ + docker \ + bash # cd into the user directory, download and unzip the github actions runner RUN cd /home/docker && mkdir actions-runner && cd actions-runner \