Skip to content

Commit

Permalink
create Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
blackholegalaxy authored Jun 24, 2017
1 parent 3af0bf8 commit c45df9d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c45df9d

Please sign in to comment.