From 028dd5f95f6dca964f21d8b63859d9db1b6e70af Mon Sep 17 00:00:00 2001 From: Jonathan Ervine Date: Wed, 10 Feb 2021 20:48:34 +0800 Subject: [PATCH] Bumped to 3.11.3 --- Dockerfile | 2 +- Jenkinsfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index d908f66..3140b08 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ MAINTAINER “Jonathan Ervine” ENV LANG='en_US.UTF-8' \ LANGUAGE='en_US.UTF-8' \ TERM='xterm' \ - VERSION='3.11.2' \ + VERSION='3.11.3' \ HYDRA_USER=hydra \ HYDRA_UID=1027 \ HYDRA_GID=1027 diff --git a/Jenkinsfile b/Jenkinsfile index 140900c..10f8920 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-nzbhydra.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/nzbhydra2:v3.11.2 --destination=harbor.ervine.dev/public/x86_64/alpine/nzbhydra2:v3.11' + sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/alpine/nzbhydra2:v3.11.3 --destination=harbor.ervine.dev/public/x86_64/alpine/nzbhydra2:v3.11' } } stage('Notify gchat') { - hangoutsNotify message: "NZBhydra 3.11.2 on Alpine has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false + hangoutsNotify message: "NZBhydra 3.11.3 on Alpine has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false } } }