Skip to content

Commit 0715608

Browse files
authored
Upgrading ChromeDriver to 73.0.3683.68 (#884)
1 parent cb6513a commit 0715608

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

NodeChrome/Dockerfile.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ USER seluser
3333
# can specify versions by CHROME_DRIVER_VERSION
3434
# Latest released version will be used by default
3535
#============================================
36-
ARG CHROME_DRIVER_VERSION="latest"
37-
RUN CD_VERSION=$(if [ ${CHROME_DRIVER_VERSION:-latest} = "latest" ]; then echo $(wget -qO- https://chromedriver.storage.googleapis.com/LATEST_RELEASE); else echo $CHROME_DRIVER_VERSION; fi) \
36+
ARG CHROME_DRIVER_VERSION="73.0.3683.68"
37+
RUN CD_VERSION=$(echo $CHROME_DRIVER_VERSION) \
3838
&& echo "Using chromedriver version: "$CD_VERSION \
3939
&& wget --no-verbose -O /tmp/chromedriver_linux64.zip https://chromedriver.storage.googleapis.com/$CD_VERSION/chromedriver_linux64.zip \
4040
&& rm -rf /opt/selenium/chromedriver \

0 commit comments

Comments
 (0)