From b8ca606c67de8f059d03b0e3036b837e1312aff8 Mon Sep 17 00:00:00 2001 From: Gulfaraz Rahman Date: Fri, 19 Jul 2024 16:42:24 +0200 Subject: [PATCH] build: use node 20 --- .github/workflows/workflow.yml | 2 +- services/API-service/.node-version | 2 +- services/API-service/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index fcb411516..701944e21 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -40,7 +40,7 @@ jobs: strategy: matrix: - node-version: [17.x] + node-version: [20.x] defaults: run: diff --git a/services/API-service/.node-version b/services/API-service/.node-version index b26a23938..1efe0ac63 100644 --- a/services/API-service/.node-version +++ b/services/API-service/.node-version @@ -1 +1 @@ -v17.9.1 +v20.15.1 diff --git a/services/API-service/Dockerfile b/services/API-service/Dockerfile index 4d768d90c..1ef49bcb5 100644 --- a/services/API-service/Dockerfile +++ b/services/API-service/Dockerfile @@ -1,4 +1,4 @@ -FROM node:17-alpine +FROM node:20-alpine RUN apk update && apk add python3 make g++ git