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

Commit

Permalink
Merge pull request #50 from amida-tech/hotfix/ISEC-35-docker-alpine-r…
Browse files Browse the repository at this point in the history
…oot-password2

[ISEC-35] Update Dockerfile base image from `node:8.14.0-alpine` to `…
  • Loading branch information
rmharrison committed May 14, 2019
2 parents 13bc878 + ae51d9f commit e8c13e5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
## [Unreleased]


## [1.4.2] -- 2019-05-14
### Fixed
- Patch for CVE-2019-5021 in `Dockerfile`. `node:8.16.0-alpine` uses a patched version of `alpine`.


## [1.4.1] -- 2018-02-26
### Fixed
- DB connection is now encrypted
Expand All @@ -13,6 +18,8 @@
- Notifications are no longer sent to a signed out device
* ENV VAR `PUSH_NOTIFICATIONS_APN_KEY_PATH` (for iOS)
- Prepush githook for `yarn lint` and `yarn test` with `npm:husky`
- Environment variable `PUSH_NOTIFICATIONS_APN_KEY_PATH`
- https://jira.amida.com/browse/ORANGE-1029, including paranoid delete on Devices table.

### Changed
- Use sequelize up/down migrations instead of `db.sync()`
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:8.14.0-alpine as builder
FROM node:8.16.0-alpine as builder

WORKDIR /app/
COPY . /app/
Expand All @@ -7,7 +7,7 @@ RUN yarn install --pure-lockfile
RUN yarn build
RUN yarn install --production --frozen-lockfile

FROM node:8.14.0-alpine
FROM node:8.16.0-alpine

WORKDIR /app/

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "amida-notification-microservice",
"version": "1.4.1",
"version": "1.4.2",
"description": "Microservice for a lightweight notification application",
"author": "Nick Mcally <[email protected]>",
"main": "dist/index.js",
Expand Down

0 comments on commit e8c13e5

Please sign in to comment.