From 44872bf185b3dac1a9418c8b80a03d5985ef9494 Mon Sep 17 00:00:00 2001 From: jonny Date: Tue, 9 Mar 2021 13:02:47 +0000 Subject: [PATCH] 'update files with ansible' --- Dockerfile | 6 +++--- Jenkinsfile | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0802676..07049f5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,9 +16,9 @@ RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositorie ADD UTC /etc/localtime #RUN git clone https://github.com/Tautulli/Tautulli && \ -RUN wget https://github.com/Tautulli/Tautulli/archive/v2.6.6.tar.gz && \ - tar zxvf v2.6.6.tar.gz -C / && \ - mv /Tautulli-2.6.6 /Tautulli && \ +RUN wget https://github.com/Tautulli/Tautulli/archive/v2.6.7.tar.gz && \ + tar zxvf v2.6.7.tar.gz -C / && \ + mv /Tautulli-2.6.7 /Tautulli && \ rm *.tar.gz && \ rm -rf /var/cache/apk/* && \ addgroup -g 1027 tautulli && \ diff --git a/Jenkinsfile b/Jenkinsfile index 4f72987..f6ec807 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-tautulli.git', credentialsId: 'jenkins-to-git' container('kaniko') { - sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/alpine/tautulli:v2.6.6-3.13.0' + sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/alpine/tautulli:v2.6.7-3.13.0' } } stage('Notify gchat') { - hangoutsNotify message: "Tatutulli 2.6.6 on Alpine has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false + hangoutsNotify message: "Tatutulli 2.6.7 on Alpine has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false } } }