File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ ARG TERRAFORM_VER="1.4.0"
6
6
ARG YQ_VER="v4.35.1"
7
7
8
8
# Install dependencies and tools in a single RUN command to minimize layers
9
- RUN sudo apt update -y && umask 0002 \
9
+ RUN sudo apt update -y \
10
+ umask 0002 \
10
11
sudo apt install -y ca-certificates curl wget apt-transport-https lsb-release gnupg unzip ssh git jq software-properties-common openssl && \
11
12
curl -sL https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/microsoft.gpg > /dev/null && \
12
13
echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ jammy main" | sudo tee /etc/apt/sources.list.d/azure-cli.list && \
@@ -31,4 +32,4 @@ RUN sudo apt update -y && umask 0002 \
31
32
# Download and Install Node JS
32
33
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - \
33
34
sudo apt-get install -y nodejs \
34
- && node --version
35
+ node --version
You can’t perform that action at this time.
0 commit comments