From 37425a3441644e29db314b576980acdcc61b3e70 Mon Sep 17 00:00:00 2001 From: Shelly Wang Date: Wed, 11 Dec 2024 21:30:07 +0000 Subject: [PATCH] get latest chromedriver version because the link is fixed. Change Kangooroo to the newest version --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5ed2a1a..8968004 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,15 +2,13 @@ ARG branch=latest FROM cccs/assemblyline-v4-service-base:$branch ENV SERVICE_PATH=urldownloader.URLDownloader -ENV KANGOOROO_VERSION=v2.0.1.stable5 +ENV KANGOOROO_VERSION=v2.0.1.stable6 USER root RUN apt update -y && \ apt install -y wget default-jre unzip ffmpeg && \ # Find out what is the latest version of the chrome-for-testing/chromedriver available - # TODO: the newest version of chrome-for-testing is not available. We are using a fixed version for now and we uncomment line 12 and remove line 13 - # VERS=$(wget -q -O - https://googlechromelabs.github.io/chrome-for-testing/LATEST_RELEASE_STABLE) && \ - VERS="131.0.6778.85" && \ + VERS=$(wget -q -O - https://googlechromelabs.github.io/chrome-for-testing/LATEST_RELEASE_STABLE) && \ # Download + Install google-chrome with the version matching the latest chromedriver wget -O ./google-chrome-stable_amd64.deb https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_$VERS-1_amd64.deb && \ apt install -y ./google-chrome-stable_amd64.deb && \