From 063ea139c7e4ed43db0342e8096d43c0f7348045 Mon Sep 17 00:00:00 2001 From: jonny Date: Tue, 9 Nov 2021 03:51:47 +0000 Subject: [PATCH] 'update files with ansible' --- Dockerfile | 4 ++-- Jenkinsfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 81aef8f..bb7c292 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,9 +12,9 @@ RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositorie apk -U upgrade --ignore alpine-baselayout && \ apk -U add python3 -RUN wget https://github.com/pymedusa/Medusa/archive/v0.5.17.tar.gz -O medusa.tar.gz && \ +RUN wget https://github.com/pymedusa/Medusa/archive/v0.5.19.tar.gz -O medusa.tar.gz && \ tar zxvf medusa.tar.gz && \ - mv Medusa-0.5.17 medusa && \ + mv Medusa-0.5.19 medusa && \ rm -rf medusa.tar.gz && \ apk del make gcc g++ && \ rm -rf /tmp/src && \ diff --git a/Jenkinsfile b/Jenkinsfile index 4669a9e..83b097f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -26,11 +26,11 @@ spec: stage('Build with Kaniko') { git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-medusa.git', credentialsId: 'jenkins-to-git' container('kaniko') { - sh "/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/public/x86_64/alpine/medusa:v0.5.17" + sh "/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/public/x86_64/alpine/medusa:v0.5.19" } } stage('Notify gchat') { - hangoutsNotify message: "Medusa 0.5.17 on Alpine Linux has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false + hangoutsNotify message: "Medusa 0.5.19 on Alpine Linux has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false } } }