Skip to content
This repository has been archived by the owner on Apr 1, 2019. It is now read-only.

Commit

Permalink
Merge pull request #77 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 authored Nov 13, 2017
2 parents 991629e + a43ac0f commit 8a469f7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.3.0 / 2017-11-16
==================
- Upgrade Docker container to `node:8.9.1-alpine`
- Remove redundant `--` for forwarding script options

0.2.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
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "gp-data-etl",
"version": "0.2.0",
"version": "0.3.0",
"description": "ETL to extract data from Syndication and store as JSON",
"main": "app.js",
"scripts": {
"coverage-check": "istanbul check-coverage --config .istanbul.yml",
"coverage-generate": "yarn istanbul -- cover _mocha -- --recursive test/unit",
"coverage-generate": "yarn istanbul cover -- _mocha -- --recursive test/unit",
"coverage-upload-coveralls": "cat ./coverage/lcov.info | coveralls",
"git-hook": "yarn lint && yarn coverage-generate && yarn coverage-check",
"istanbul": "NODE_ENV=test istanbul",
Expand All @@ -21,8 +21,8 @@
"test-ci": "yarn git-hook && yarn coverage-upload-coveralls",
"test-integration": "NODE_ENV=test mocha --recursive test/integration",
"test-unit": "NODE_ENV=test mocha --recursive test/unit",
"test-watch": "yarn test-unit -- --watch --reporter min",
"test-watch-integration": "yarn test-integration -- --watch --reporter min"
"test-watch": "yarn test-unit --watch --reporter min",
"test-watch-integration": "yarn test-integration --watch --reporter min"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 8a469f7

Please sign in to comment.