From 394f4e8d4f3ceccd15e0d3e0cd7160e0967172ca Mon Sep 17 00:00:00 2001 From: Rajendra Pandey Date: Wed, 27 May 2026 09:57:01 -0700 Subject: [PATCH] Fix build error --- Dockerfile | 4 ++-- Jenkinsfile | 2 +- build.gradle | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9643323..29ba754 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,8 @@ RUN yarn global add pm2 -g COPY package.json yarn.lock /app/ -RUN yarn install +RUN yarn install --ignore-engines COPY . /app -CMD ./start +CMD ["./start"] diff --git a/Jenkinsfile b/Jenkinsfile index 3092515..7898c31 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,6 +1,6 @@ @Library('tivoPipeline') _ -emailBreaks { +emailBreaks('inception-scrum@tivo.com') { node('docker') { stage('Code Checkout') { checkout scm diff --git a/build.gradle b/build.gradle index 95ad361..bba0167 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { // uncomment to use local repo when testing tivo-docker plugin // maven { url "file://${projectDir}/../repo" } maven { - url 'http://repo-vip.tivo.com:8081/artifactory/plugins-release' + url 'https://repo-vip.tivo.com:8443/artifactory/plugins-release' } }