Files
hyperf/Jenkinsfile

18 lines
696 B
Plaintext
Raw Normal View History

2022-04-24 14:58:52 +08:00
pipeline {
agent any
2022-04-24 14:58:52 +08:00
stages {
stage('Build 8.0-swoole') {
steps {
sh 'docker login harbor.luxcreo.cn -u \'robot$library+jenkinsfile\' -p Bw0teIfUhP7WBd1yDp7DTWSbF0d5nVvE'
2022-04-24 14:58:52 +08:00
sh 'docker build -t harbor.luxcreo.cn/library/hyperf:8.0-swoole -f swoole/8.0/Dockerfile .'
sh 'docker push harbor.luxcreo.cn/library/hyperf:8.0-swoole'
}
}
stage('Build Latest') {
steps {
sh 'docker tag harbor.luxcreo.cn/library/hyperf:8.0-swoole harbor.luxcreo.cn/library/hyperf:latest'
sh 'docker push harbor.luxcreo.cn/library/hyperf:latest'
}
}
2022-04-24 14:58:52 +08:00
}
}