Skip to content

Instantly share code, notes, and snippets.

@l3acucm
Created February 25, 2019 12:36
Show Gist options
  • Select an option

  • Save l3acucm/929480c98ce8fe04ca7a7044170286cf to your computer and use it in GitHub Desktop.

Select an option

Save l3acucm/929480c98ce8fe04ca7a7044170286cf to your computer and use it in GitHub Desktop.
Installing headless chrome browser into docker container
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