From c07411e71eb52a4e55fc8089c3cb1709795e9333 Mon Sep 17 00:00:00 2001 From: akaJuliaan Date: Sat, 12 Jul 2025 12:39:15 +0200 Subject: [PATCH] fix: use the official azure-cli install script --- dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index b898b09..3094866 100644 --- a/dockerfile +++ b/dockerfile @@ -16,7 +16,10 @@ 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 azure-cli jq build-essential libssl-dev libffi-dev python3 python3-venv python3-dev python3-pip + curl nodejs wget unzip vim git jq build-essential libssl-dev libffi-dev python3 python3-venv python3-dev python3-pip + +# install azure-cli +RUN curl -sL https://aka.ms/InstallAzureCLIDeb | bash # cd into the user directory, download and unzip the github actions runner RUN cd /home/docker && mkdir actions-runner && cd actions-runner \