Added compose

This commit is contained in:
Guillem Hernandez Sola
2018-06-13 11:35:13 +02:00
parent 3b4d6dc3e0
commit 80460ccdc9
10 changed files with 160 additions and 0 deletions

6
Dockerfile Executable file
View File

@@ -0,0 +1,6 @@
FROM node:4.6
WORKDIR /app
ADD . /app
RUN npm install
EXPOSE 3000
CMD npm start