Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinbuss committed Dec 10, 2023
1 parent 28121db commit bbad305
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/container/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG DISTRIBUTION=focal
FROM myoung34/github-runner:2.311.0-ubuntu-${DISTRIBUTION}
FROM myoung34/github-runner:2.311.0-ubuntu-$DISTRIBUTION

# General
RUN sudo apt-get update
Expand All @@ -10,8 +10,8 @@ RUN sudo apt-get install -y ca-certificates curl apt-transport-https lsb-release
&& sudo mkdir -p /etc/apt/keyrings \
&& curl -sLS https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor | sudo tee /etc/apt/keyrings/microsoft.gpg > /dev/null \
&& sudo chmod go+r /etc/apt/keyrings/microsoft.gpg \
&& echo "deb [arch=`dpkg --print-architecture` signed-by=/etc/apt/keyrings/microsoft.gpg] https://packages.microsoft.com/repos/azure-cli/ ${DISTRIBUTION} main" | sudo tee /etc/apt/sources.list.d/azure-cli.list \
&& sudo apt-get install -y azure-cli=${AZURE_CLI_VERSION}-1~${DISTRIBUTION}
&& echo "deb [arch=`dpkg --print-architecture` signed-by=/etc/apt/keyrings/microsoft.gpg] https://packages.microsoft.com/repos/azure-cli/ $DISTRIBUTION main" | sudo tee /etc/apt/sources.list.d/azure-cli.list \
&& sudo apt-get install -y azure-cli=$AZURE_CLI_VERSION-1~$DISTRIBUTION

# Install pwsh
ARG PWSH_VERSION=7.4.0
Expand Down

0 comments on commit bbad305

Please sign in to comment.