Bumped bedrock server version

This commit is contained in:
Jonathan Ervine 2020-12-13 22:15:39 +08:00
parent bc291861ba
commit e00fdac867
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ FROM debian:buster-slim
LABEL maintainer="Jonathan Ervine <docker@ervine.org>" LABEL maintainer="Jonathan Ervine <docker@ervine.org>"
# Set ENV variables # Set ENV variables
ENV VERSION='1.16.101.01' \ ENV VERSION='1.16.200.02' \
BEDROCK_USER='bedrock' \ BEDROCK_USER='bedrock' \
BEDROCK_UID='1003' BEDROCK_UID='1003'

4
Jenkinsfile vendored
View File

@ -27,11 +27,11 @@ spec:
stage('Build with Kaniko') { stage('Build with Kaniko') {
git url: 'ssh://git@git.ervine.org/jonny/x86_64-debian-bedrock.git', credentialsId: 'jenkins-to-git' git url: 'ssh://git@git.ervine.org/jonny/x86_64-debian-bedrock.git', credentialsId: 'jenkins-to-git'
container('kaniko') { 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.101.01' 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'
} }
} }
stage('Notify gchat') { stage('Notify gchat') {
hangoutsNotify message: "Bedrock Server 1.16.101.01 on debian has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false hangoutsNotify message: "Bedrock Server 1.16.200.02 on debian has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false
} }
} }
} }