From 2c0a7931b2d29bf1f30944c2c827aa619a10ffa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Mon, 11 Sep 2023 11:41:27 +0200 Subject: [PATCH] jibri: update Chrome to 116 Note the URL for the ChromeDriver has changed now. --- jibri/Dockerfile | 4 ++-- jibri/rootfs/usr/bin/install-chrome.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/jibri/Dockerfile b/jibri/Dockerfile index b6aa1cb..e8da8cf 100644 --- a/jibri/Dockerfile +++ b/jibri/Dockerfile @@ -12,8 +12,8 @@ ARG TARGETPLATFORM ARG USE_CHROMIUM=0 #ARG CHROME_RELEASE=latest #ARG CHROMEDRIVER_MAJOR_RELEASE=latest -ARG CHROME_RELEASE=114.0.5735.90 -ARG CHROMEDRIVER_MAJOR_RELEASE=114 +ARG CHROME_RELEASE=116.0.5845.96 +ARG CHROMEDRIVER_MAJOR_RELEASE=116 COPY rootfs/ / diff --git a/jibri/rootfs/usr/bin/install-chrome.sh b/jibri/rootfs/usr/bin/install-chrome.sh index 5f10aeb..bc7a3b9 100755 --- a/jibri/rootfs/usr/bin/install-chrome.sh +++ b/jibri/rootfs/usr/bin/install-chrome.sh @@ -28,7 +28,7 @@ else fi CHROMEDRIVER_ZIP="/tmp/chromedriver_linux64.zip" - curl -4Lso ${CHROMEDRIVER_ZIP} "https://chromedriver.storage.googleapis.com/${CHROMEDRIVER_RELEASE}/chromedriver_linux64.zip" + curl -4Lso ${CHROMEDRIVER_ZIP} "https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/${CHROMEDRIVER_RELEASE}/linux64/chromedriver-linux64.zip" unzip ${CHROMEDRIVER_ZIP} -d /tmp/chromedriver mv /tmp/chromedriver/chromedriver /usr/bin/ chmod +x /usr/bin/chromedriver