Skip to content
This repository has been archived by the owner on Feb 26, 2018. It is now read-only.

Commit

Permalink
Merge pull request #61 from nhsuk/feature/updates
Browse files Browse the repository at this point in the history
📦 Update container to node:8.9.1-alpine
  • Loading branch information
markysoft committed Nov 13, 2017
2 parents 1d07fd7 + c815cfe commit 890d3a8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.10.0 / 2017-11-16
===================
- Upgrade Docker container to `node:8.9.1-alpine`
- Remove redundant `--` for forwarding script options

0.9.0 / 2017-10-31
===================
- Upgrade Docker container to `node:8.8.1-alpine`
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:8.8.1-alpine
FROM node:8.9.1-alpine

ENV USERNAME nodeuser

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "gp-redirect",
"version": "0.9.0",
"version": "0.10.0",
"description": "Redirects requests for GP surgeries based on the referring page",
"main": "app-start.js",
"scripts": {
"coverage-check": "istanbul check-coverage --config .istanbul.yml",
"coverage-generate": "yarn istanbul -- cover _mocha -- --exit --recursive",
"coverage-generate": "yarn istanbul cover -- _mocha -- --exit --recursive",
"coverage-upload": "cat ./coverage/lcov.info | coveralls",
"git-hook": "yarn lint && yarn coverage-generate && yarn coverage-check",
"istanbul": "NODE_ENV=test istanbul",
Expand All @@ -17,7 +17,7 @@
"start-watch": "nodemon app-start.js | ./node_modules/bunyan/bin/bunyan",
"test": "NODE_ENV=test mocha --exit --recursive test",
"test-ci": "yarn git-hook && yarn coverage-upload",
"test-watch": "yarn test -- --watch --reporter min"
"test-watch": "yarn test --watch --reporter min"
},
"author": "",
"license": "MIT",
Expand Down

0 comments on commit 890d3a8

Please sign in to comment.