Skip to content

Fix for Vulnerability (USN-7259-1) #1429

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/ubuntu/22.04/cross/armel-tizen/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ ARG ROOTFS_DIR

# Install binutils-arm-linux-gnueabi
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y \
binutils-arm-linux-gnueabi \
&& rm -rf /var/lib/apt/lists/*
Expand Down
1 change: 1 addition & 0 deletions src/ubuntu/22.04/crossdeps/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ FROM mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-coredeps

# Install the base toolchain we need to build anything (clang, cmake, make and the like).
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y \
apt-transport-https \
ca-certificates \
Expand Down
2 changes: 2 additions & 0 deletions src/ubuntu/common/coredeps/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ FROM mcr.microsoft.com/powershell:$POWERSHELL_TAG

# Install tools used by the AzDO build automation.
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y \
git \
nodejs \
Expand All @@ -14,6 +15,7 @@ RUN apt-get update \

# Runtime dependencies
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y \
autoconf \
automake \
Expand Down