From 02ed3b79a403bb08c0057dc75088c4b22eeab10f Mon Sep 17 00:00:00 2001 From: Joris Berthelot Date: Wed, 2 Dec 2015 15:07:14 +0100 Subject: [PATCH] Update nodejs: FROM alpine-node:5.1 --- Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index db8138f..03f8209 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,2 +1,7 @@ -FROM node:4.2-onbuild +FROM mhart/alpine-node:5.1 MAINTAINER Joris Berthelot +WORKDIR /src +COPY . . +RUN npm install +EXPOSE 80 +CMD [ "npm", "start" ]