Skip to content

Commit

Permalink
Merge branch 'main' into centos10
Browse files Browse the repository at this point in the history
  • Loading branch information
richlander authored Dec 12, 2024
2 parents 43e5f07 + 2ad6e73 commit 80cd249
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions src/ubuntu/20.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ RUN apt-get update \
make \
pigz \
sudo \
wget
wget \
&& rm -rf /var/lib/apt/lists/*

# Install tools used by the VSO build automation.
RUN apt-get update \
Expand All @@ -26,7 +27,9 @@ RUN apt-get update \
tar \
zip \
curl \
&& rm -rf /var/lib/apt/lists/*
&& rm -rf /var/lib/apt/lists/* \
# npm installs a vulnerable node-ip pkg. Upgrading the node-ip pkg requires Ubuntu PRO subscription. Workaround by using NPM.
&& npm install -g ip@latest

# .NET SDK MSBuild requires US.UTF-8 locale to execute tasks
RUN locale-gen en_US.UTF-8
Expand Down
7 changes: 5 additions & 2 deletions src/ubuntu/22.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ RUN apt-get update \
locales \
make \
pigz \
sudo
sudo \
&& rm -rf /var/lib/apt/lists/*

# This link fixes the broken lldb python scripting that the diagnostics tests require
RUN mkdir -p /usr/lib/local/lib/python3.10/dist-packages/lldb \
Expand All @@ -27,7 +28,9 @@ RUN apt-get update \
npm \
zip \
curl \
&& rm -rf /var/lib/apt/lists/*
&& rm -rf /var/lib/apt/lists/* \
# npm installs a vulnerable node-ip pkg. Upgrading the node-ip pkg requires Ubuntu PRO subscription. Workaround by using NPM.
&& npm install -g ip@latest

# .NET SDK MSBuild requires US.UTF-8 locale to execute tasks
RUN locale-gen en_US.UTF-8
Expand Down

0 comments on commit 80cd249

Please sign in to comment.