mirror of https://github.com/waku-org/nwaku.git
fix: sanity-check the docker image start
To avoid basic runtime failures due to missing libraries: ``` > docker run --rm statusteam/nim-waku:deploy-wakuv2-test --version could not load: libpq.so(.5|) ``` Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
3906a9315f
commit
ae05f0a848
|
@ -67,6 +67,14 @@ pipeline {
|
|||
} }
|
||||
}
|
||||
|
||||
stage('Check') {
|
||||
steps { script {
|
||||
image.inside('--entrypoint=""') { c ->
|
||||
sh '/usr/bin/wakunode --version'
|
||||
}
|
||||
} }
|
||||
}
|
||||
|
||||
stage('Push') {
|
||||
steps { script {
|
||||
withDockerRegistry([credentialsId: "dockerhub-statusteam-auto", url: ""]) {
|
||||
|
|
Loading…
Reference in New Issue