'update files with ansible'

This commit is contained in:
jonny 2021-03-11 13:13:48 +00:00
parent 7b221fa8d7
commit 5960197d1d
2 changed files with 9 additions and 12 deletions

View File

@ -1,10 +1,9 @@
# Base on latest (edge) alpine image # Base on latest (edge) alpine image
FROM harbor.ervine.dev/public/x86_64/alpine:v3.13 FROM harbor.ervine.dev/public/x86_64/alpine:v3.13.1
LABEL "Maintainer Jonathan Ervine <docker@ervine.org>" LABEL "Maintainer Jonathan Ervine docker@ervine.org"
# Install updates # Install updates
# Create mediaservice user
ENV LANG='en_US.UTF-8' \ ENV LANG='en_US.UTF-8' \
LANGUAGE='en_US.UTF-8' \ LANGUAGE='en_US.UTF-8' \
TERM='xterm' TERM='xterm'
@ -12,8 +11,7 @@ ENV LANG='en_US.UTF-8' \
RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories && \ RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories && \
apk update && \ apk update && \
apk upgrade --ignore alpine-baselayout && \ apk upgrade --ignore alpine-baselayout && \
apk -U add \ apk -U add python2 git py-pillow
python2 git py-pillow
ADD UTC /etc/localtime ADD UTC /etc/localtime

13
Jenkinsfile vendored
View File

@ -3,7 +3,7 @@ kind: Pod
spec: spec:
containers: containers:
- name: kaniko - name: kaniko
image: gcr.io/kaniko-project/executor:debug-539ddefcae3fd6b411a95982a830d987f4214251 image: gcr.io/kaniko-project/executor:debug
imagePullPolicy: Always imagePullPolicy: Always
command: command:
- /busybox/cat - /busybox/cat
@ -25,14 +25,13 @@ spec:
node(POD_LABEL) { node(POD_LABEL) {
stage('Build with Kaniko') { stage('Build with Kaniko') {
git 'https://git.ervine.org/jonny/x86_64-alpine-htpcmgr.git' git branch: 'master', url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-htpcmgr.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/htpc-mgr:latest --destination=harbor.ervine.dev/public/x86_64/alpine/htpc-mgr:2019' sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/public/x86_64/alpine//htpcmgr:v3.13.1'
} }
} }
}
}
stage('Notify gchat') { stage('Notify gchat') {
hangoutsNotify message: "Alpine Linux 3.13.0 with HTPC Manager has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false hangoutsNotify message: "Alpine Linux 3.13.1 with HTPC Manager has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false
}
}
} }