From eae3f5ce2d7627afe4115f52a61cc7ae3e3e8a31 Mon Sep 17 00:00:00 2001 From: netaskd Date: Thu, 23 Apr 2020 13:15:30 +0300 Subject: [PATCH] jibri: chrome/driver 78 as a stopgap --- jibri/Dockerfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/jibri/Dockerfile b/jibri/Dockerfile index c7f419d..d97d9ee 100644 --- a/jibri/Dockerfile +++ b/jibri/Dockerfile @@ -1,8 +1,10 @@ ARG JITSI_REPO=jitsi FROM ${JITSI_REPO}/base-java -ARG CHROME_RELEASE=latest -ARG CHROMEDRIVER_MAJOR_RELEASE=latest +#ARG CHROME_RELEASE=latest +#ARG CHROMEDRIVER_MAJOR_RELEASE=latest +ARG CHROME_RELEASE=78.0.3904.97 +ARG CHROMEDRIVER_MAJOR_RELEASE=78 RUN \ apt-dpkg-wrap apt-get update \ @@ -20,9 +22,9 @@ RUN \ RUN \ [ "${CHROME_RELEASE}" != "latest" ] \ - && curl -4so /tmp/google-chrome-stable_${CHROME_RELEASE}_amd64.deb http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_RELEASE}_amd64.deb \ + && curl -4so /tmp/google-chrome-stable_${CHROME_RELEASE}-1_amd64.deb http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_RELEASE}-1_amd64.deb \ && apt-dpkg-wrap apt-get update \ - && apt-dpkg-wrap apt-get install -y /tmp/google-chrome-stable_${CHROME_RELEASE}_amd64.deb \ + && apt-dpkg-wrap apt-get install -y /tmp/google-chrome-stable_${CHROME_RELEASE}-1_amd64.deb \ && apt-cleanup \ || true