Add v4, with proxy, app and db

This commit is contained in:
Elton Stoneman
2017-11-20 17:00:54 +00:00
parent 3f2894bea0
commit 1e92429385
19 changed files with 463 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
FROM node:6.11.5
WORKDIR /usr/src/app
COPY package.json .
RUN npm install
EXPOSE 8080
CMD [ "npm", "start" ]
COPY . .