Created
February 25, 2019 12:36
-
-
Save l3acucm/929480c98ce8fe04ca7a7044170286cf to your computer and use it in GitHub Desktop.
Installing headless chrome browser into docker container
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
| RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - | |
| RUN sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' | |
| RUN apt-get update | |
| RUN apt --fix-broken install | |
| RUN apt-get install google-chrome-stable -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment