I install jenkins in docker,when I run jenkins pipeline get this error:
docker: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by docker)
docker: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by docker)
this is the conetnt of jenkinsfile.
pipeline {
agent {
docker {
image 'node:14'
reuseNode true
}
}
stages {
stage('Test') {
steps {
sh 'node --version'
}
}
}
}