Skip to content

Commit

Permalink
fix: packages
Browse files Browse the repository at this point in the history
  • Loading branch information
rstuhlmuller committed Dec 16, 2023
1 parent cd2c252 commit 9e003ec
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion docker-src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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 \
Expand Down

0 comments on commit 9e003ec

Please sign in to comment.