mirror of
http://124.126.16.154:8888/singularity/docker-images-hyperf.git
synced 2026-01-15 00:35:08 +08:00
15 lines
438 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
} |