From f7b262b640306566aefe9cf786a1ad0ecea6cf49 Mon Sep 17 00:00:00 2001 From: Jonathan Ervine Date: Thu, 21 Jan 2021 11:31:51 +0800 Subject: [PATCH] Bumped to Alpine Linux 3.13.0 and Medusa 0.5.3 --- Dockerfile | 4 ++-- Jenkinsfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index b2d6bbc..f256fbd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Base on latest (edge) alpine image -FROM harbor.ervine.dev/public/x86_64/alpine:v3.12 +FROM harbor.ervine.dev/public/x86_64/alpine:v3.13 MAINTAINER “Jonathan Ervine” @@ -7,7 +7,7 @@ MAINTAINER “Jonathan Ervine” ENV LANG='en_US.UTF-8' \ LANGUAGE='en_US.UTF-8' \ TERM='xterm' \ - VERSION='0.5.2' + VERSION='0.5.3' RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories && \ apk update && \ diff --git a/Jenkinsfile b/Jenkinsfile index b55c337..4055494 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -31,11 +31,11 @@ spec: } 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:0.5 --destination=harbor.ervine.dev/public/x86_64/alpine/medusa:v0.5.2" + sh "/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/public/x86_64/alpine/medusa:0.5 --destination=harbor.ervine.dev/public/x86_64/alpine/medusa:v0.5.3" } } stage('Notify gchat') { - hangoutsNotify message: "Medusa 0.5.2 on Alpine Linux has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false + hangoutsNotify message: "Medusa 0.5.3 on Alpine Linux has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false } } }