'update files with ansible'

This commit is contained in:
jonny 2021-03-31 02:34:17 +00:00
parent b1b3744451
commit e5819d0599
2 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
# Base on latest (edge) alpine image
FROM harbor.ervine.dev/public/x86_64/alpine:v3.13.0
FROM harbor.ervine.dev/public/x86_64/alpine:v3.13.2:v3.13.2
LABEL maintainer="Jonathan Ervine <docker@ervine.org>"
@ -16,9 +16,9 @@ RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositorie
ADD UTC /etc/localtime
#RUN git clone https://github.com/Tautulli/Tautulli && \
RUN wget https://github.com/Tautulli/Tautulli/archive/v2.6.6.tar.gz && \
tar zxvf v2.6.6.tar.gz -C / && \
mv /Tautulli-2.6.6 /Tautulli && \
RUN wget https://github.com/Tautulli/Tautulli/archive/v2.6.10.tar.gz && \
tar zxvf v2.6.10.tar.gz -C / && \
mv /Tautulli-2.6.10 /Tautulli && \
rm *.tar.gz && \
rm -rf /var/cache/apk/* && \
addgroup -g 1027 tautulli && \

4
Jenkinsfile vendored
View File

@ -28,11 +28,11 @@ spec:
stage('Build with Kaniko') {
git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-tautulli.git', credentialsId: 'jenkins-to-git'
container('kaniko') {
sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/alpine/tautulli:v2.6.6-3.13.0'
sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/alpine/tautulli:v2.6.10-3.13.2'
}
}
stage('Notify gchat') {
hangoutsNotify message: "Tatutulli 2.6.6 on Alpine has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false
hangoutsNotify message: "Tatutulli 2.6.10 on Alpine has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false
}
}
}