Skip to content

Commit

Permalink
Node 14 support (#1221)
Browse files Browse the repository at this point in the history
* enable support for node 14 - node engine >=14.19.0

Signed-off-by: fraVlaca <ocsenarf@outlook.com>

* support node 14 for docker image, besu, fisco, generator

Signed-off-by: fraVlaca <ocsenarf@outlook.com>
  • Loading branch information
fraVlaca committed Feb 11, 2022
1 parent 4a1860e commit 24fcdf3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Expand Up @@ -72,7 +72,7 @@ stages:
steps:
- task: NodeTool@0
inputs:
versionSpec: "10.x"
versionSpec: "14.x"
displayName: "Install Node.js"
- script: |
.build/benchmark-integration-test-direct.sh
Expand All @@ -83,7 +83,7 @@ stages:
steps:
- task: NodeTool@0
inputs:
versionSpec: "10.x"
versionSpec: "14.x"
displayName: "Install Node.js"
- script: |
.build/benchmark-integration-test-direct.sh
Expand All @@ -94,7 +94,7 @@ stages:
steps:
- task: NodeTool@0
inputs:
versionSpec: "10.x"
versionSpec: "14.x"
displayName: "Install Node.js"
- script: |
.build/benchmark-integration-test-direct.sh
Expand Down
4 changes: 2 additions & 2 deletions packages/caliper-publish/caliper.Dockerfile
Expand Up @@ -12,14 +12,14 @@
# limitations under the License.
#

FROM node:10.22-alpine
FROM node:14.19-alpine

# require to set these explicitly to avoid mistakes
ARG npm_registry
ARG caliper_version

# Install packages for dependency compilation
RUN apk add --no-cache python g++ make git
RUN apk add --no-cache python3 g++ make git

# execute as the "node" user, created in the base image
USER node:node
Expand Down

0 comments on commit 24fcdf3

Please sign in to comment.