Skip to content

Commit c4565c6

Browse files
authored
Update Dockerfile
1 parent f8f098d commit c4565c6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ ARG TERRAFORM_VER="1.4.0"
66
ARG YQ_VER="v4.35.1"
77

88
# 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 \
1011
sudo apt install -y ca-certificates curl wget apt-transport-https lsb-release gnupg unzip ssh git jq software-properties-common openssl && \
1112
curl -sL https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/microsoft.gpg > /dev/null && \
1213
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 \
3132
# Download and Install Node JS
3233
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - \
3334
sudo apt-get install -y nodejs \
34-
&& node --version
35+
node --version

0 commit comments

Comments
 (0)