Skip to content

Commit 46866b2

Browse files
committed
Added Dockerfile that cache npm install
1 parent 69ef24b commit 46866b2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
FROM node:4.3.2
2+
ADD package.json /src/package.json
3+
RUN cd /src && npm install
4+
ADD . /src
5+
WORKDIR /src
6+
CMD ["npm", "run", "dashboard"]

0 commit comments

Comments
 (0)