diff --git a/src/ubuntu/22.04/cross/armel-tizen/Dockerfile b/src/ubuntu/22.04/cross/armel-tizen/Dockerfile index a95755b3f..238706202 100644 --- a/src/ubuntu/22.04/cross/armel-tizen/Dockerfile +++ b/src/ubuntu/22.04/cross/armel-tizen/Dockerfile @@ -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/* diff --git a/src/ubuntu/22.04/crossdeps/amd64/Dockerfile b/src/ubuntu/22.04/crossdeps/amd64/Dockerfile index 35cc1fbde..65e14a20f 100644 --- a/src/ubuntu/22.04/crossdeps/amd64/Dockerfile +++ b/src/ubuntu/22.04/crossdeps/amd64/Dockerfile @@ -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 \ diff --git a/src/ubuntu/common/coredeps/Dockerfile b/src/ubuntu/common/coredeps/Dockerfile index 1ad3fb197..c43824b1d 100644 --- a/src/ubuntu/common/coredeps/Dockerfile +++ b/src/ubuntu/common/coredeps/Dockerfile @@ -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 \ @@ -14,6 +15,7 @@ RUN apt-get update \ # Runtime dependencies RUN apt-get update \ + && apt-get upgrade -y \ && apt-get install -y \ autoconf \ automake \