Skip to content

Commit 35f261e

Browse files
authored
Fix for Vulnerability (USN-7259-1) (#1429)
1 parent ef843ce commit 35f261e

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

src/ubuntu/22.04/cross/armel-tizen/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ ARG ROOTFS_DIR
1414

1515
# Install binutils-arm-linux-gnueabi
1616
RUN apt-get update \
17+
&& apt-get upgrade -y \
1718
&& apt-get install -y \
1819
binutils-arm-linux-gnueabi \
1920
&& rm -rf /var/lib/apt/lists/*

src/ubuntu/22.04/crossdeps/amd64/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ FROM mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-coredeps
22

33
# Install the base toolchain we need to build anything (clang, cmake, make and the like).
44
RUN apt-get update \
5+
&& apt-get upgrade -y \
56
&& apt-get install -y \
67
apt-transport-https \
78
ca-certificates \

src/ubuntu/common/coredeps/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ FROM mcr.microsoft.com/powershell:$POWERSHELL_TAG
33

44
# Install tools used by the AzDO build automation.
55
RUN apt-get update \
6+
&& apt-get upgrade -y \
67
&& apt-get install -y \
78
git \
89
nodejs \
@@ -14,6 +15,7 @@ RUN apt-get update \
1415

1516
# Runtime dependencies
1617
RUN apt-get update \
18+
&& apt-get upgrade -y \
1719
&& apt-get install -y \
1820
autoconf \
1921
automake \

0 commit comments

Comments
 (0)