Skip to content

Commit

Permalink
Merge branch 'master' into renovate/node-10.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiaozhe Yao committed Nov 11, 2018
2 parents afcd6a2 + 9539245 commit 2de6dd0
Show file tree
Hide file tree
Showing 21 changed files with 15,025 additions and 44 deletions.
14,501 changes: 14,501 additions & 0 deletions dashboard/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"copy-webpack-plugin": "4.6.0",
"cross-spawn": "6.0.5",
"css-loader": "1.0.1",
"eslint": "5.8.0",
"eslint": "5.9.0",
"eslint-config-standard": "12.0.0",
"eslint-friendly-formatter": "4.0.1",
"eslint-loader": "2.1.1",
Expand Down
3 changes: 2 additions & 1 deletion discovery/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules/
dist/
dist/
*.log
13 changes: 13 additions & 0 deletions discovery/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM node:latest

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

COPY package.json /usr/src/app/
RUN npm install

COPY . /usr/src/app
RUN npm build

EXPOSE 3000
CMD ["npm", "start"]
Loading

0 comments on commit 2de6dd0

Please sign in to comment.