Skip to content

Instantly share code, notes, and snippets.

@djhojd
Created October 7, 2017 13:27
Show Gist options
  • Save djhojd/2fe7db88d58a91b7ac9611b56265f5c6 to your computer and use it in GitHub Desktop.
Save djhojd/2fe7db88d58a91b7ac9611b56265f5c6 to your computer and use it in GitHub Desktop.
FROM node:8-slim
# --------------------------------------
# Install Chrome
# --------------------------------------
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& sh -c 'echo "deb [arch=amd64] 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 --no-install-recommends
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment