diff options
-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 |