Created
October 7, 2017 13:27
-
-
Save djhojd/2fe7db88d58a91b7ac9611b56265f5c6 to your computer and use it in GitHub Desktop.
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 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