'update files with ansible'

This commit is contained in:
git 2025-03-02 15:02:06 +00:00
parent bb38d9f540
commit 9f02d54577
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
# Base on latest UBI image
FROM harbor.ervine.dev/public/x86_64/ubi:9.3-1552
FROM harbor.ervine.dev/public/x86_64/ubi:9.5-1738643550
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.2.6.8376/Radarr.master.5.2.6.8376.linux-core-x64.tar.gz | tar zxv && \
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 && \
groupadd -g 1027 radarr && \
useradd -u 1027 -g radarr -M radarr && \
chown -R radarr:radarr /Radarr

4
Jenkinsfile vendored
View File

@ -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.2.6.8376 --destination=harbor.ervine.dev/public/x86_64/ubi/radarr:v5.2.6.8376'
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'
}
}
stage('Notify gchat') {
googlechatnotification (url: 'https://chat.googleapis.com/v1/spaces/AAAA-nNKzdA/messages?key=AIzaSyDdI0hCZtE6vySjMm-WEfRq3CPzqKqqsHI&token=FySO2Zy2wfNJ7QKoqT9zy0uzNJF8bwj74ansor3BTu0%3D', message: "Radarr 5.2.6.8376 on RHEL UBI has built")
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")
}
}
}