diff options
author | Rob McGinley <mcginleyr1@gmail.com> | 2016-01-24 14:31:17 -0500 |
---|---|---|
committer | Rob McGinley <mcginleyr1@gmail.com> | 2016-01-24 14:31:17 -0500 |
commit | d710d64bfcb6dceb2225241bab389a14479e4baf (patch) | |
tree | ff03bf38d456c644b14d3e6de00b195bf4eb0dee /Dockerfile | |
parent | 99590564d35ae6d040386a41b15050ece02b7d76 (diff) |
Docker file for pev
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4552a55 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM alpine:latest + +RUN apk update && apk add g++ make nodejs python ruby + +COPY . /var/www/pev + +WORKDIR /var/www/pev + +RUN npm install --unsafe-perm + +CMD npm start |