Files
hyperf/Jenkinsfile
2022-04-24 14:58:52 +08:00

15 lines
438 B
Groovy

pipeline {
stages {
stage('Build 8.0-swoole') {
agent {
docker { image 'plugins/docker' }
}
steps {
sh 'docker login harbor.luxcreo.cn -u '
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'
}
}
}
}