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' } }