File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -30,9 +30,9 @@ RUN apt-get -y update && apt-get install -y \
3030 libgtk-3-0 \
3131 libgbm1
3232
33- # Install chromedriver matching Chrome version
34- RUN CHROME_VERSION=$(google-chrome --version | awk '{print $3}' | awk -F '.' '{print $1}' ) && \
35- CHROMEDRIVER_VERSION=$(curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE_$CHROME_VERSION ) && \
33+ # Install chromedriver
34+ RUN apt-get install -yqq unzip
35+ RUN CHROMEDRIVER_VERSION=$(curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE ) && \
3636 wget -O /tmp/chromedriver.zip http://chromedriver.storage.googleapis.com/$CHROMEDRIVER_VERSION/chromedriver_linux64.zip && \
3737 unzip /tmp/chromedriver.zip chromedriver -d /usr/local/bin/ && \
3838 chmod +x /usr/local/bin/chromedriver && \
You can’t perform that action at this time.
0 commit comments