From e7fe56a0556afa091afa72f3a0ff36eceb669d2a Mon Sep 17 00:00:00 2001 From: Eugene Ostroukhov Date: Thu, 26 Oct 2023 09:35:59 -0700 Subject: [PATCH] Update runner image to ensure up-to date packages (#387) This is needed to adress vulnerability scanner issues, such as b/305098338 internal bug. --- containers/runtime/driver/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/containers/runtime/driver/Dockerfile b/containers/runtime/driver/Dockerfile index 8e74c481..624e3381 100644 --- a/containers/runtime/driver/Dockerfile +++ b/containers/runtime/driver/Dockerfile @@ -52,6 +52,8 @@ WORKDIR /src/workspace COPY --from=1 /tmp/build_output /tmp/build_output COPY --from=1 /src/code /src/code +RUN apt-get update && apt-get upgrade -y + RUN apt-get update && apt-get install -y \ autoconf \ build-essential \