aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob McGinley <mcginleyr1@gmail.com>2016-01-24 22:28:46 -0500
committerRob McGinley <mcginleyr1@gmail.com>2016-01-24 22:28:46 -0500
commit7f0713cbd84157a23605fc2815da44d04caba0dc (patch)
tree7c11040ac807857e341221abcc125d95d0d0488d
parentd710d64bfcb6dceb2225241bab389a14479e4baf (diff)
Grr node on alpine no fun...
-rw-r--r--Dockerfile14
1 files changed, 10 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile
index 4552a55..7cbd1fd 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,11 +1,17 @@
-FROM alpine:latest
+FROM debian:jessie
-RUN apk update && apk add g++ make nodejs python ruby
+RUN apt-get update && apt-get -y install apt-transport-https curl g++ make python ruby
+
+RUN curl -sL https://deb.nodesource.com/setup_4.x | bash -
+
+RUN apt-get -y install nodejs
COPY . /var/www/pev
WORKDIR /var/www/pev
-RUN npm install --unsafe-perm
+RUN npm install -g gulp
+
+RUN npm install
-CMD npm start
+CMD cd /var/www/pev && npm start