From 50ad6156f7140072307ef622d7fdca290fa7c3e2 Mon Sep 17 00:00:00 2001 From: Elshad Seyidmammadov Date: Mon, 26 May 2025 17:09:06 +0400 Subject: [PATCH] Update Jenkins file to use Node.js 10-alpine Docker image Update the Docker image used in the Jenkins file from 'node:8-alpine' to 'node:10-alpine' to ensure compatibility with newer Node.js features and improved stability. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7269a72..4af9fa9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,7 +1,7 @@ node { /* Requires the Docker Pipeline plugin to be installed */ - docker.image('node:8-alpine').inside { + docker.image('node:10-alpine').inside { def scmInfo