Skip to content

Commit c0f5b1e

Browse files
use node v14 (#408)
Co-authored-by: Felix Erdmann <[email protected]>
1 parent 38320ee commit c0f5b1e

File tree

7 files changed

+14
-10
lines changed

7 files changed

+14
-10
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@ updates:
99
directory: "/"
1010
schedule:
1111
interval: "daily"
12+
- package-ecosystem: "docker"
13+
directory: "/"
14+
schedule:
15+
interval: "daily"

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Make sure you have the following tools installed:
1414

1515
- Docker
1616
- Docker Compose
17-
- Node.Js v8
17+
- Node.Js v14
1818
- Yarn package manager
1919

2020
Fork, then clone the repo:

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:12-alpine as build
1+
FROM node:14-alpine as build
22

33
ENV NODE_ENV=production
44

@@ -23,7 +23,7 @@ RUN yarn create-version-file \
2323
&& rm -rf .git .scripts
2424

2525
# Final stage
26-
FROM node:12-alpine
26+
FROM node:14-alpine
2727

2828
ENV NODE_ENV=production
2929

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ You'll find that the repostiory uses yarn workspaces to separate the [API](packa
1111
Configuration of both the api and the models is done using mechanisms provided by [lorenwest/node-config](https://github.com/lorenwest/node-config). You can find an annotated example configuration with all keys in [`config/config.example.json`](config/config.example.json).
1212

1313
## Development
14-
- Have [Node.js] v12, [yarn](https://yarnpkg.com/), [Docker](https://docs.docker.com/engine/installation/) and [docker-compose](https://docs.docker.com/compose/install/) installed
14+
- Have [Node.js] v14, [yarn](https://yarnpkg.com/), [Docker](https://docs.docker.com/engine/installation/) and [docker-compose](https://docs.docker.com/compose/install/) installed
1515
- Start your development database (`docker-compose up -d db`)
1616
- Create branch for your feature (`git checkout my-awesome-feature`)
1717
- Run `yarn install`

packages/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@turf/hex-grid": "^6.0.2",
2020
"@turf/square-grid": "^6.0.2",
2121
"@turf/triangle-grid": "^6.0.1",
22-
"apicache": "^1.4.0",
22+
"apicache": "1.5.2",
2323
"bunyan": "^1.8.14",
2424
"config": "^3.3.3",
2525
"csv-stringify": "^5.6.0",

tests/tests-Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:12-alpine
1+
FROM node:14-alpine
22

33
# YARN_PRODUCTION=false is a workaround for https://github.com/yarnpkg/yarn/issues/4557
44
ENV NODE_ENV=production \

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -350,10 +350,10 @@ anymatch@~3.1.1:
350350
normalize-path "^3.0.0"
351351
picomatch "^2.0.4"
352352

353-
apicache@^1.4.0:
354-
version "1.5.3"
355-
resolved "https://registry.yarnpkg.com/apicache/-/apicache-1.5.3.tgz#8977b358bf7d579d55fe3d183c907ae5dbcfb357"
356-
integrity sha512-n1h39Bt7tMiJMV0u0tFlhigig8Uo/wJmKoj6WE/OwvZ+WbFchn7jnXleotZOzZTUBtr0Tg9iJshHnJDAGQbAEQ==
353+
apicache@1.5.2:
354+
version "1.5.2"
355+
resolved "https://registry.yarnpkg.com/apicache/-/apicache-1.5.2.tgz#2cb0697d9b1b612b505b1a44face66d48b1d1404"
356+
integrity sha512-jO8ie/Zqmr3MxLQSVNsHiQo5R1tbbP1TnpI6xOnRJv9wUOSP+YnZkULWmdo3fE7PHBSxIQzgIsEHGa6H5hKH9Q==
357357

358358
aproba@^1.0.3:
359359
version "1.2.0"

0 commit comments

Comments
 (0)