Fix CI docker build issue (#121)

delete node

Co-authored-by: chuhanjin <419436363@qq.com>
This commit is contained in:
ChuhanJin 2022-06-27 09:02:25 +08:00 committed by GitHub
parent f731427282
commit 3410a56d86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

3
Jenkinsfile vendored
View file

@ -43,7 +43,6 @@ pipeline {
steps { steps {
// Use a scripted pipeline. // Use a scripted pipeline.
script { script {
node {
def app def app
// stage('Initialize') { // stage('Initialize') {
// def dockerHome = tool 'myDocker' // def dockerHome = tool 'myDocker'
@ -53,7 +52,7 @@ pipeline {
stage('Build image') { stage('Build image') {
app = docker.build("${env.DOCKER_CREDENTIALS_USR}/l2geth-img") app = docker.build("${env.DOCKER_CREDENTIALS_USR}/l2geth-img")
} }
}
} }
} }
} }