Skip to content

Commit 4e53b40

Browse files
authored
Merge pull request #656 from pjonsson/node16-upgrade
Update from node 14 to 16
2 parents 37226e6 + 71731d2 commit 4e53b40

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# develop container
2-
FROM node:14 as develop
2+
FROM node:16 as develop
33

44
# build container
5-
FROM node:14 as build
5+
FROM node:16 as build
66
USER node
77

88
COPY --chown=node:node . /app
@@ -13,7 +13,7 @@ RUN yarn install
1313
RUN yarn gulp release
1414

1515
# deploy container
16-
FROM node:14-slim as deploy
16+
FROM node:16-slim as deploy
1717

1818
USER node
1919

deploy/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Docker image for the primary terria map application server
2-
FROM node:14
2+
FROM node:16
33

44
RUN mkdir -p /usr/src/app && mkdir -p /etc/config/client
55
WORKDIR /usr/src/app/component

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"description": "Geospatial catalog explorer based on TerriaJS.",
1818
"license": "Apache-2.0",
1919
"engines": {
20-
"node": ">= 14.0.0"
20+
"node": ">= 16.0.0"
2121
},
2222
"repository": {
2323
"type": "git",

0 commit comments

Comments
 (0)