diff --git a/Dockerfile b/Dockerfile index 61d33df..69207a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 " "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 \ && CONFIG="\ diff --git a/Jenkinsfile b/Jenkinsfile index 76b8611..c4a89c5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,9 +27,12 @@ spec: stage('Build with Kaniko') { git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-nginx.git', credentialsId: 'jenkins-to-git' 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 + } } }