From 2a109628be027ebc89496b82fab39fe37b10a6a9 Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Thu, 26 May 2022 12:54:42 -0700 Subject: [PATCH] [Tests] Update Dockerfile chrome version to match (#1626) (#1627) package.json and yarn.lock already updated to 100.0.0 Signed-off-by: Josh Romero (cherry picked from commit 665424e563521a6556ded5d6e3ea4090956a76c0) Co-authored-by: Josh Romero --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a66671fbb654..f976d4875114 100755 --- a/Dockerfile +++ b/Dockerfile @@ -11,9 +11,9 @@ RUN apt-get update && \ rm -rf /var/lib/apt/lists/* # Specify the version of Chrome that matches the version of chromedriver in the package.json. -# A list of Chrome versions can be found here: +# A list of Chrome versions can be found here: # https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable -ARG CHROME_VERSION=91.0.4472.114-1 +ARG CHROME_VERSION=100.0.4896.127-1 RUN curl -sSL https://dl.google.com/linux/linux_signing_key.pub | apt-key add - \ && wget -O /tmp/chrome.deb https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb \ && apt-get update \