From 952bf7d6e3523ac1eeff0d173242c3614d134ae3 Mon Sep 17 00:00:00 2001 From: Jon Ervine Date: Mon, 8 Mar 2021 11:26:41 +0800 Subject: [PATCH] Bumped alpine version --- Dockerfile | 2 +- Jenkinsfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 401784e..b970d44 100755 --- 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 LABEL Maintainer="Jonathan Ervine " # Install updates diff --git a/Jenkinsfile b/Jenkinsfile index 6aba599..0d9fb58 100755 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,12 +27,12 @@ spec: stage('Build with Kaniko') { git branch: 'master', url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-hockey.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/hockey:v3.12.1 --destination=harbor.ervine.dev/public/x86_64/alpine/hockey:v3.12' + sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/public/x86_64/alpine/hockey:v3.13.0 --destination=harbor.ervine.dev/public/x86_64/alpine/hockey:v3.13' } } } } stage('Notify gchat') { - hangoutsNotify message: "Hockey Application on Alpine Linux 3.12.1 has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false + hangoutsNotify message: "Hockey Application on Alpine Linux 3.13.0 has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false }