From f333d0b9f91f128ef40489bcf07ac2781c87ad9f Mon Sep 17 00:00:00 2001 From: Jonathan Ervine Date: Thu, 17 Dec 2020 14:52:48 +0800 Subject: [PATCH] Updated bedrock version --- Dockerfile | 2 +- Jenkinsfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index ecbeb81..78b504f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM debian:buster-slim LABEL maintainer="Jonathan Ervine " # Set ENV variables -ENV VERSION='1.16.200.02' \ +ENV VERSION='1.16.201.02' \ BEDROCK_USER='bedrock' \ BEDROCK_UID='1003' diff --git a/Jenkinsfile b/Jenkinsfile index 7620af9..5d9f4fa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,11 +27,11 @@ spec: stage('Build with Kaniko') { git url: 'ssh://git@git.ervine.org/jonny/x86_64-debian-bedrock.git', credentialsId: 'jenkins-to-git' container('kaniko') { - sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/debian/bedrock:latest --destination=harbor.ervine.dev/public/x86_64/debian/bedrock:1.16.200.02' + sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/debian/bedrock:latest --destination=harbor.ervine.dev/public/x86_64/debian/bedrock:1.16.201.02' } } stage('Notify gchat') { - hangoutsNotify message: "Bedrock Server 1.16.200.02 on debian has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false + hangoutsNotify message: "Bedrock Server 1.16.201.02 on debian has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false } } }