diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..504aa1f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM node:6 + +MAINTAINER blackholegalaxy + +RUN apt-get -qqy update \ + && apt-get -qqy install \ + wget ca-certificates apt-transport-https + +RUN wget -q -O - https://dl.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 \ + && apt-get -qqy update \ + && apt-get -qqy install google-chrome-stable