所有的人都没有找到解决方案。 我正在学习有关如何使用Jenkins构建node.js和React应用程序的教程:https://jenkins.io/doc/tutorials/build-a-node-js-and-react-app-with-npm/#fork-sample-repository
在构建期间,出现错误
进程显然从未开始过 / home / jenkins / workspace / developer-console @ tmp / durable-28a71889
(暂时运行Jenkins, -Dorg.jenkinsci.plugins.durabletask.BourneShellScript.LAUNCH_DIAGNOSTICS = true 可能会使问题更清楚)
脚本返回了退出代码-2
我的Jenkinsfile看起来像:
pipeline {
agent {
docker {
image 'node:6-alpine'
args '-p 3000:3000'
}
}
stages {
stage('Build') {
steps {
sh 'npm install'
}
}
}
}
请知道我该如何纠正?在此过程中,当我检查时,node:6-alpine已创建并且正在正常运行。 谢谢