FROM node:7-slim RUN mkdir -p /app WORKDIR /app COPY ./package.json /app/ RUN npm install && npm cache clean ENV PATH ./node_modules/.bin/:$PATH