-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add quotes to docker-compose port range vars * upgrade to Node 14 * update CircleCI config to use Node 14 * upgrade dockerfiles to node 14 * update travis config for Node 14 * update npm package-lock * upgrade node-postgres to resolve Knex error - knex/knex#3836 * bump Node to 14.17.5 for latest security release - https://nodejs.org/en/blog/vulnerability/aug-2021-security-releases/ * pin Node to latest in v14
- Loading branch information
Showing
7 changed files
with
5,203 additions
and
6,362 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:10-alpine | ||
FROM node:14-alpine | ||
|
||
RUN addgroup -g 10001 app && \ | ||
adduser -D -G app -h /app -u 10001 app | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Build app for integration tests | ||
FROM node:10 | ||
FROM node:14 | ||
|
||
RUN useradd -d /app -u 1001 -g 1000 app | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters