From 625cd9b4a763ae02e33bb758d91440b54fc8178c Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Mon, 5 Jun 2023 16:35:23 -0400 Subject: [PATCH] Update ubuntu image chromium installation methods Signed-off-by: Peter Zhu --- .../test.ubuntu2004.systemd-base.x64.arm64.dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker/ci/dockerfiles/current/test.ubuntu2004.systemd-base.x64.arm64.dockerfile b/docker/ci/dockerfiles/current/test.ubuntu2004.systemd-base.x64.arm64.dockerfile index 4bccb260d4..3d53035351 100644 --- a/docker/ci/dockerfiles/current/test.ubuntu2004.systemd-base.x64.arm64.dockerfile +++ b/docker/ci/dockerfiles/current/test.ubuntu2004.systemd-base.x64.arm64.dockerfile @@ -85,8 +85,9 @@ USER 0 ARG DEBIAN_FRONTEND=noninteractive -# Install python37 dependencies -RUN apt-get update -y && apt-get install -y software-properties-common && add-apt-repository ppa:deadsnakes/ppa -y +# Install python37 dependencies and chromium dependencies +RUN apt-get update -y && apt-get install -y software-properties-common && add-apt-repository ppa:deadsnakes/ppa -y && \ + add-apt-repository ppa:saiarcot895/chromium-beta -y # Install python37 binaries RUN apt-get update -y && apt-get install python3 && \