'update files with ansible'
This commit is contained in:
parent
86bd84c83c
commit
0071e19299
@ -1,5 +1,5 @@
|
|||||||
# Base on latest (edge) alpine image
|
# Base on latest (edge) alpine image
|
||||||
FROM harbor.ervine.dev/public/x86_64/alpine:v3.13.3
|
FROM harbor.ervine.dev/public/x86_64/alpine:v3.13.4
|
||||||
|
|
||||||
LABEL MAINTAINER "Jonathan Ervine docker@ervine.org"
|
LABEL MAINTAINER "Jonathan Ervine docker@ervine.org"
|
||||||
|
|
||||||
@ -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 upgrade --ignore alpine-baselayout && \
|
||||||
apk -U add python3
|
apk -U add python3
|
||||||
|
|
||||||
RUN wget https://github.com/pymedusa/Medusa/archive/v0.5.10.tar.gz -O medusa.tar.gz && \
|
RUN wget https://github.com/pymedusa/Medusa/archive/v0.5.11.tar.gz -O medusa.tar.gz && \
|
||||||
tar zxvf medusa.tar.gz && \
|
tar zxvf medusa.tar.gz && \
|
||||||
mv Medusa-0.5.10 medusa && \
|
mv Medusa-0.5.11 medusa && \
|
||||||
rm -rf medusa.tar.gz && \
|
rm -rf medusa.tar.gz && \
|
||||||
apk del make gcc g++ && \
|
apk del make gcc g++ && \
|
||||||
rm -rf /tmp/src && \
|
rm -rf /tmp/src && \
|
||||||
|
|||||||
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
@ -26,11 +26,11 @@ spec:
|
|||||||
stage('Build with Kaniko') {
|
stage('Build with Kaniko') {
|
||||||
git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-medusa.git', credentialsId: 'jenkins-to-git'
|
git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-medusa.git', credentialsId: 'jenkins-to-git'
|
||||||
container('kaniko') {
|
container('kaniko') {
|
||||||
sh "/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/public/x86_64/alpine/medusa:v0.5.10"
|
sh "/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/public/x86_64/alpine/medusa:v0.5.11"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Notify gchat') {
|
stage('Notify gchat') {
|
||||||
hangoutsNotify message: "Medusa 0.5.10 on Alpine Linux has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false
|
hangoutsNotify message: "Medusa 0.5.11 on Alpine Linux has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user