From 923b95ce24cac17259465ebdb1e129dadef23a4e Mon Sep 17 00:00:00 2001 From: git Date: Sun, 11 Feb 2024 13:24:09 +0000 Subject: [PATCH] 'update files with ansible' --- Dockerfile | 4 ++-- Jenkinsfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9ae9e36..fabfa90 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Base on latest UBI image -FROM harbor.ervine.dev/public/x86_64/ubi9:9.2-722 +FROM harbor.ervine.dev/public/x86_64/ubi9:9.3-1552 LABEL maintainer="Jonathan Ervine docker@ervine.org" @@ -17,7 +17,7 @@ RUN dnf update -y && \ update-ca-trust && \ dnf clean all -RUN curl -sLo sonarr.tar.gz https://download.sonarr.tv/v3/main/3.0.10.1567/Sonarr.main.3.0.10.1567.linux.tar.gz && \ +RUN curl -sLo sonarr.tar.gz https://download.sonarr.tv/v3/main/4.0.1.929/Sonarr.main.4.0.1.929.linux.tar.gz && \ sleep 30 && \ tar zxvf sonarr.tar.gz && \ rm -rf sonarr.tar.gz && \ diff --git a/Jenkinsfile b/Jenkinsfile index 1a111bc..05191e0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -28,11 +28,11 @@ spec: stage('Build with Kaniko') { git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-sonarr', credentialsId: 'jenkins2git' container('kaniko') { - sh '/kaniko/executor --force -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/ubi/sonarr:v3.0.10.1567' + sh '/kaniko/executor --force -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/ubi/sonarr:v4.0.1.929' } } stage('Notify gchat') { - googlechatnotification (url: 'https://chat.googleapis.com/v1/spaces/AAAA-nNKzdA/messages?key=AIzaSyDdI0hCZtE6vySjMm-WEfRq3CPzqKqqsHI&token=FySO2Zy2wfNJ7QKoqT9zy0uzNJF8bwj74ansor3BTu0%3D', message: "Sonarr 3.0.10.1567 on RHEL UBI has built") + googlechatnotification (url: 'https://chat.googleapis.com/v1/spaces/AAAA-nNKzdA/messages?key=AIzaSyDdI0hCZtE6vySjMm-WEfRq3CPzqKqqsHI&token=FySO2Zy2wfNJ7QKoqT9zy0uzNJF8bwj74ansor3BTu0%3D', message: "Sonarr 4.0.1.929 on RHEL UBI has built") } } }