Last active
January 13, 2020 12:04
-
-
Save mhemrg/1706a8d017e1703554fdbfd0f261e6b2 to your computer and use it in GitHub Desktop.
Django + Chrome Driver
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM liararepo/django-platform | |
| # install google chrome | |
| RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - | |
| RUN sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' | |
| RUN apt-get -y update | |
| RUN apt-get install -y google-chrome-stable | |
| # install chromedriver | |
| RUN apt-get install -yqq unzip | |
| RUN wget -O /tmp/chromedriver.zip http://chromedriver.storage.googleapis.com/`curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE`/chromedriver_linux64.zip | |
| RUN unzip /tmp/chromedriver.zip chromedriver -d /usr/local/bin/ | |
| # set display port to avoid crash | |
| ENV DISPLAY=:99 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment