Bumped to Alpine Linux 3.13.0 and Medusa 0.5.3

This commit is contained in:
Jonathan Ervine 2021-01-21 11:31:51 +08:00
parent 78ba9a223d
commit f7b262b640
2 changed files with 4 additions and 4 deletions

View File

@ -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” <docker@ervine.org>
@ -7,7 +7,7 @@ MAINTAINER “Jonathan Ervine” <docker@ervine.org>
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 && \

4
Jenkinsfile vendored
View File

@ -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
}
}
}