Skip to content

Commit

Permalink
added npm upgrade and updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
BretFisher committed Jun 23, 2018
1 parent 4c5447b commit e7d005e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ ARG PORT=80
ENV PORT $PORT
EXPOSE $PORT 9229 9230

# you'll likely want the latest npm, reguardless of node version, for speed and fixes
RUN npm i npm@latest -g

# install dependencies first, in a different location for easier app bind mounting for local development
WORKDIR /opt
COPY package.json package-lock.json* ./
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
"test-wait-debuger": "cross-env NODE_ENV=test PORT=8081 mocha --no-timeouts --exit --inspect-brk=0.0.0.0:9230"
},
"dependencies": {
"express": "^4.14.1",
"express": "^4.16.3",
"morgan": "^1.8.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"cross-env": "^5.1.4",
"mocha": "^5.0.5",
"nodemon": "^1.11.0"
"nodemon": "^1.17.5"
}
}

0 comments on commit e7d005e

Please sign in to comment.