Skip to content

Instantly share code, notes, and snippets.

@amirhalatzi
Created August 12, 2018 07:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amirhalatzi/79b9f274786372d8382dbf4ba72a5fca to your computer and use it in GitHub Desktop.
Save amirhalatzi/79b9f274786372d8382dbf4ba72a5fca to your computer and use it in GitHub Desktop.
# Install Chromium.
RUN \
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list && \
apt-get update && \
apt-get install -y google-chrome-stable && \
rm -rf /var/lib/apt/lists/*
@ctrongminh
Copy link

I think this is chrome stable not the chromium, is it correct ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment