Skip to content

Commit eeb442b

Browse files
authored
Merge pull request #32 from linuxserver/chrome-driver
update chrome driver version endpoint
2 parents 7b02086 + 3a07eb0 commit eeb442b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ RUN \
3131
xserver-xephyr \
3232
xvfb && \
3333
echo "**** install chrome driver ****" && \
34-
CHROME_RELEASE=$(curl -sLk https://chromedriver.storage.googleapis.com/LATEST_RELEASE) && \
34+
CHROME_RELEASE=$(curl -sLk https://googlechromelabs.github.io/chrome-for-testing/LATEST_RELEASE_STABLE) && \
3535
echo "Retrieving Chrome driver version ${CHROME_RELEASE}" && \
3636
curl -sk -o \
3737
/tmp/chrome.zip -L \
38-
"https://chromedriver.storage.googleapis.com/${CHROME_RELEASE}/chromedriver_linux64.zip" && \
38+
"https://storage.googleapis.com/chrome-for-testing-public/${CHROME_RELEASE}/linux64/chromedriver-linux64.zip" && \
3939
cd /tmp && \
4040
unzip chrome.zip && \
41-
mv chromedriver /usr/bin/chromedriver && \
41+
mv chromedriver-linux64/chromedriver /usr/bin/chromedriver && \
4242
chown root:root /usr/bin/chromedriver && \
4343
chmod +x /usr/bin/chromedriver && \
4444
echo "**** Install python deps ****" && \

0 commit comments

Comments
 (0)