File tree 3 files changed +4
-0
lines changed
3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ ARG ROOTFS_DIR
14
14
15
15
# Install binutils-arm-linux-gnueabi
16
16
RUN apt-get update \
17
+ && apt-get upgrade -y \
17
18
&& apt-get install -y \
18
19
binutils-arm-linux-gnueabi \
19
20
&& rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ FROM mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-coredeps
2
2
3
3
# Install the base toolchain we need to build anything (clang, cmake, make and the like).
4
4
RUN apt-get update \
5
+ && apt-get upgrade -y \
5
6
&& apt-get install -y \
6
7
apt-transport-https \
7
8
ca-certificates \
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ FROM mcr.microsoft.com/powershell:$POWERSHELL_TAG
3
3
4
4
# Install tools used by the AzDO build automation.
5
5
RUN apt-get update \
6
+ && apt-get upgrade -y \
6
7
&& apt-get install -y \
7
8
git \
8
9
nodejs \
@@ -14,6 +15,7 @@ RUN apt-get update \
14
15
15
16
# Runtime dependencies
16
17
RUN apt-get update \
18
+ && apt-get upgrade -y \
17
19
&& apt-get install -y \
18
20
autoconf \
19
21
automake \
You can’t perform that action at this time.
0 commit comments