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" ]