8000 Bump Chrome and Chromedriver to v76, FF to v68.0.1 by baflQA · Pull Request #335 · elgalu/docker-selenium · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Jun 30, 2021. It is now read-only.

Bump Chrome and Chromedriver to v76, FF to v68.0.1 #335

Merged
merged 1 commit into from
Jul 31, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ ENV FF_LANG="en-US" \

#--- For Selenium 3
# Layer size: big: 108.2 MB
ARG FF_VER="68.0"
ARG FF_VER="68.0.1"

ENV FF_COMP="firefox-${FF_VER}.tar.bz2"
ENV FF_URL="${FF_BASE_URL}/${FF_INNER_PATH}/${FF_VER}/${FF_PLATFORM}/${FF_LANG}/${FF_COMP}"
Expand Down Expand Up @@ -646,7 +646,7 @@ COPY bin/fail /usr/bin/
#===============
# TODO: Use Google fingerprint to verify downloads
# https://www.google.de/linuxrepositories/
ARG EXPECTED_CHROME_VERSION="75.0.3770.100"
ARG EXPECTED_CHROME_VERSION="76.0.3809.87"
ENV CHROME_URL="https://dl.google.com/linux/direct" \
CHROME_BASE_DEB_PATH="/home/seluser/chrome-deb/google-chrome" \
GREP_ONLY_NUMS_VER="[0-9.]{2,20}"
Expand Down Expand Up @@ -689,7 +689,7 @@ USER seluser
# Chrome webdriver
#==================
# How to get cpu arch dynamically: $(lscpu | grep Architecture | sed "s/^.*_//")
ARG CHROME_DRIVER_VERSION="75.0.3770.8"
ARG CHROME_DRIVER_VERSION="76.0.3809.68"
ENV CHROME_DRIVER_BASE="chromedriver.storage.googleapis.com" \
CPU_ARCH="64"
ENV CHROME_DRIVER_FILE="chromedriver_linux${CPU_ARCH}.zip"
Expand Down
0