diff options
author | Rob McGinley <mcginleyr1@gmail.com> | 2016-01-24 22:28:46 -0500 |
---|---|---|
committer | Rob McGinley <mcginleyr1@gmail.com> | 2016-01-24 22:28:46 -0500 |
commit | 7f0713cbd84157a23605fc2815da44d04caba0dc (patch) | |
tree | 7c11040ac807857e341221abcc125d95d0d0488d /Dockerfile | |
parent | d710d64bfcb6dceb2225241bab389a14479e4baf (diff) |
Grr node on alpine no fun...
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -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 |