@@ -0,0 +1,6 @@
+FROM node:9-slim
+WORKDIR /app
+COPY package.json ./app
+RUN npm install
+COPY . ./app
+CMD ["npm", "start"]