Skip to content

Commit

Permalink
Update ChromeDriver to v115.0.5790.40 (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsuhiro-t committed Jun 25, 2023
1 parent 9654140 commit 8c7c546
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ RUN apt-get update && \

RUN pip3 install selenium

ENV CHROMEDRIVER_VERSION="113.0.5672.24"
RUN wget -q "https://chromedriver.storage.googleapis.com/$CHROMEDRIVER_VERSION/chromedriver_linux64.zip" && \
unzip chromedriver_linux64.zip && \
mv chromedriver /usr/bin && \
ENV CHROMEDRIVER_VERSION="115.0.5790.40"
RUN wget -q "https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/$CHROMEDRIVER_VERSION/linux64/chromedriver-linux64.zip" && \
unzip chromedriver-linux64.zip && \
mv chromedriver-linux64/chromedriver /usr/bin && \
chmod +x /usr/bin/chromedriver && \
rm chromedriver_linux64.zip
rm chromedriver-linux64.zip

COPY run.py run_endpoint.sh /

Expand Down

0 comments on commit 8c7c546

Please sign in to comment.