'update files with ansible'

This commit is contained in:
git 2025-02-05 14:47:45 +00:00
parent ccb56cb0d5
commit 78562eb115
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
# Base on latest UBI image # Base on latest UBI image
FROM harbor.ervine.dev/public/x86_64/ubi:9.4-1214 FROM harbor.ervine.dev/public/x86_64/ubi:9.5-1738643550
LABEL maintainer="Jonathan Ervine docker@ervine.org" LABEL maintainer="Jonathan Ervine docker@ervine.org"
@ -16,7 +16,7 @@ RUN dnf update -y && \
update-ca-trust && \ update-ca-trust && \
dnf clean all dnf clean all
RUN curl -sLo sonarr.tar.gz https://github.com/Sonarr/Sonarr/releases/download/v4.0.9.2244/Sonarr.main.4.0.9.2244.linux-x64.tar.gz && \ RUN curl -sLo sonarr.tar.gz https://github.com/Sonarr/Sonarr/releases/download/v4.0.12.2823/Sonarr.main.4.0.12.2823.linux-x64.tar.gz && \
sleep 30 && \ sleep 30 && \
tar zxvf sonarr.tar.gz && \ tar zxvf sonarr.tar.gz && \
rm -rf sonarr.tar.gz && \ rm -rf sonarr.tar.gz && \

4
Jenkinsfile vendored
View File

@ -28,11 +28,11 @@ spec:
stage('Build with Kaniko') { stage('Build with Kaniko') {
git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-sonarr', credentialsId: 'jenkins2git' git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-sonarr', credentialsId: 'jenkins2git'
container('kaniko') { container('kaniko') {
sh '/kaniko/executor --force -f `pwd`/Containerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/ubi/sonarr:v4.0.9.2244' sh '/kaniko/executor --force -f `pwd`/Containerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/ubi/sonarr:v4.0.12.2823'
} }
} }
stage('Notify gchat') { stage('Notify gchat') {
googlechatnotification (url: 'https://chat.googleapis.com/v1/spaces/AAAA-nNKzdA/messages?key=AIzaSyDdI0hCZtE6vySjMm-WEfRq3CPzqKqqsHI&token=FySO2Zy2wfNJ7QKoqT9zy0uzNJF8bwj74ansor3BTu0%3D', message: "Sonarr 4.0.9.2244 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.12.2823 on RHEL UBI has built")
} }
} }
} }