diff --git a/Dockerfile b/Dockerfile index 7be982b..cb9977b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Base on latest UBI image -FROM harbor.ervine.dev/public/x86_64/ubi:9.5-1738643550 +FROM harbor.ervine.dev/public/x86_64/ubi:9.6-1760340943 LABEL maintainer="Jonathan Ervine docker@ervine.org" @@ -15,7 +15,7 @@ RUN dnf update -y && \ update-ca-trust && \ dnf clean all && \ - curl -SL https://github.com/Radarr/Radarr/releases/download/v5.19.3.9730/Radarr.master.5.19.3.9730.linux-core-x64.tar.gz | tar zxv && \ + curl -SL https://github.com/Radarr/Radarr/releases/download/v6.1.1.10317/Radarr.master.6.1.1.10317.linux-core-x64.tar.gz | tar zxv && \ groupadd -g 1027 radarr && \ useradd -u 1027 -g radarr -M radarr && \ chown -R radarr:radarr /Radarr diff --git a/Jenkinsfile b/Jenkinsfile index 1c4cffc..0444aa7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,11 +27,11 @@ spec: stage('Build with Kaniko') { git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-radarr', credentialsId: 'jenkins-to-git' container('kaniko') { - sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/ubi/radarr:v5.19.3.9730 --destination=harbor.ervine.dev/public/x86_64/ubi/radarr:v5.19.3.9730' + sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/ubi/radarr:v6.1.1.10317 --destination=harbor.ervine.dev/public/x86_64/ubi/radarr:v6.1.1.10317' } } stage('Notify gchat') { - googlechatnotification (url: 'https://chat.googleapis.com/v1/spaces/AAAA-nNKzdA/messages?key=AIzaSyDdI0hCZtE6vySjMm-WEfRq3CPzqKqqsHI&token=FySO2Zy2wfNJ7QKoqT9zy0uzNJF8bwj74ansor3BTu0%3D', message: "Radarr 5.19.3.9730 on RHEL UBI has built") + googlechatnotification (url: 'https://chat.googleapis.com/v1/spaces/AAAA-nNKzdA/messages?key=AIzaSyDdI0hCZtE6vySjMm-WEfRq3CPzqKqqsHI&token=FySO2Zy2wfNJ7QKoqT9zy0uzNJF8bwj74ansor3BTu0%3D', message: "Radarr 6.1.1.10317 on RHEL UBI has built") } } }