Bumped to NGINX 1.19.6 and Alpine Linux 3.13.0

This commit is contained in:
Jonathan Ervine 2021-01-21 11:35:52 +08:00
parent c225096eec
commit a91acf4cf4
2 changed files with 6 additions and 3 deletions

View File

@ -1,8 +1,8 @@
FROM harbor.ervine.dev/library/x86_64/alpine/alpine-3.12 FROM harbor.ervine.dev/library/x86_64/alpine/alpine-3.13
LABEL maintainer="Jonathan Ervine <containers@ervine.org>" "Alpine Linux version"="3.11.3" "NGINX version"="1.17.8" date="19022020" LABEL maintainer="Jonathan Ervine <containers@ervine.org>" "Alpine Linux version"="3.11.3" "NGINX version"="1.17.8" date="19022020"
ENV NGINX_VERSION 1.19.1 ENV NGINX_VERSION 1.19.6
RUN GPG_KEYS=B0F4253373F8F6F510D42178520A9993A1C052F8 \ RUN GPG_KEYS=B0F4253373F8F6F510D42178520A9993A1C052F8 \
&& CONFIG="\ && CONFIG="\

5
Jenkinsfile vendored
View File

@ -27,9 +27,12 @@ spec:
stage('Build with Kaniko') { stage('Build with Kaniko') {
git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-nginx.git', credentialsId: 'jenkins-to-git' git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-nginx.git', credentialsId: 'jenkins-to-git'
container('kaniko') { container('kaniko') {
sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/library/x86_64/alpine/nginx:1.19.1' sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/library/x86_64/alpine/nginx:1.19.6'
} }
} }
stage('Notify gchat') {
hangoutsNotify message: "NGINX 1.19.6 on Alpine Linux has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false
}
} }
} }